-
Notifications
You must be signed in to change notification settings - Fork 0
nodemon
Michael Kramer edited this page Feb 21, 2018
·
1 revision
Package Library: http://nodemon.io/
This package will auto restart your project when files change.
nf run -- nodemon index.js web
nodemon.json
{
"verbose": false,
"ignore": [
".git/*",
"node_modules/*",
"migrations/*",
"dist/*",
"server/web/public/css/main.css",
"server/web/public/images/*",
"test/*",
".gitlab/*",
"flow/*",
"flow-typed/*",
"npm-debug*"
],
"events": {
"restart": [
"printf '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'"
]
},
"env": {
"NODEMON": "1"
},
"delay": "100",
"ext": "scss js pug"
}