我试图让nodemon在我的计算机上工作,但是每次进行更改时,终端都会通知我nodemon正在重新启动,但是更改并未在程序中实现。
const express = require("express");
const app = express();
const bodyParser = require("body-parser");
const PORT = 8085;
app.use(bodyParser.json());
//all my routes here
app.listen(PORT, function(){
console.log(`Server started on Port ${PORT} ddff`);
});
当我在app.listen console.log:中进行更改时,
app.listen(PORT, function(){
console.log(`Server started on Port ${PORT}`);
});
终端卡在这里
[nodemon] starting `node index.js`
Server started on Port 8085 ddff
[nodemon] restarting due to changes...
我尝试使用旧版手表,再次安装节点,并使用其他工具,但它们似乎都不起作用。如果有人能告诉我为什么会这样,并且要解决此问题的确切步骤,将不胜感激。 :)