Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

nodemon 更改了node代码,但是重启之后并没有更新?怎么回事?

$
0
0

为了node代码可以在更改之后自动重启,使用了nodemon模块 安装顺利 sudo npm install -g nodemon app.js代码

var express = require('express');
var app = express();
app.get('*',function (req,res) {
    var data = {
        title:'1',
        content:'success'
    }
    res.send(data)
})
app.listen('1234',function () {
    console.log('1234 is listen');
})

执行 nodemon app.js 浏览器访问 http://localhost:1234/输出 {“title”:“1”,“content”:“success”} 正确

但是app.js更改为

  var data = {
        title:'2',
        content:'false'
    }

终端提示

[nodemon] files triggering change check: app.js
[nodemon] changes after filters (before/after): 1/0

但是浏览器访问还是 {“title”:“1”,“content”:“success”} ,并没有更改 求教为什么?


Viewing all articles
Browse latest Browse all 14821

Trending Articles