📜  在 Express 服务器中使用 Nodemon - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:01.738000             🧑  作者: Mango

代码示例1
// nodemon wraps around the node command. 
// To use, it, use nodemon wherever you would normally use the node 
// command. 
// To use it in the Express server that you just generated,
// you can go to the package.json file inside mynamedServer folder 
// and replace this line: "start": "node ./bin/www"
// with this "start": "nodemon ./bin/www"