UNPKG
muffin-cli
Version:
latest (0.3.0)
0.3.0
0.2.1
0.2.0
0.1.0
The command line utility for building sites using muffin
muffin.cafe
muffin/cli
muffin-cli
/
template
/
index.js
12 lines
(8 loc)
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
app =
require
(
'muffin'
)
const
convert =
require
(
'koa-convert'
)
const
router = app.
router
router.
get
(
'/'
,
convert
(
function
*(next) {
// console.log('Home visited!')
yield
next })) app.
run
(router)