UNPKG
midnight
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Web framework for building modern web applications
github.com/msavela/midnight
msavela/midnight
midnight
/
examples
/
plugins
/
plugin.js
12 lines
(11 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
// Sky color plugin
module
.
exports
= {
name
:
"sky-plugin"
,
attach
:
(
app, options = {}
) =>
{
this
.
options
= options; },
init
:
(
app, next
) =>
{ app.
sky
=
this
.
options
.
color
;
next
(); } };