我们每次修改完后都需要重新启动下才能刷新,就很麻烦‘nodemon’解决了这个问题。
npm install -g nodemon
npm install nodemon --save
{
"restartable": "rs",
"ignore": [
".git",
".svn",
"node_modules/**/node_modules"
],
"verbose": true,
"execMap": {
"js": "node --harmony"
},
"watch": [
],
"env": {
"NODE_ENV": "development"
},
"ext": "js json"
}
const port = 8080 ;
const debug = require(‘debug‘)(‘my-application‘); // debug模块
app.set(‘port‘, process.env.PORT || port); // 设定监听端口
//启动监听
var server = app.listen(app.get(‘port‘), function() {
debug(‘Express server listening on port ‘ + server.address().port);
});
打开cmd进入当前项目里有app.js
输入‘nodemon app.js’即可启动 随意修改内容就会刷新。。。
node.js+express框架 修改后自启【不需要再执行start】