我正试着让我的nodemon开始运行。但不知何故,它不运行,它没有错误消息,这是相当令人沮丧。
请看下面的package.json:
{
"name": "umbrella_maintenance",
"version": "1.0.0",
"description": "",
"main": "app-express.js",
"scripts": {
"start": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ejs": "^3.1.5",
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}
我试着运行npm run start
,但它根本不工作。没有错误消息,什么都没有。
当我尝试使用node app-express.js
启动时,我的应用程序运行良好,但当它是nodemon时,它无法工作。有什么建议吗
2条答案
按热度按时间r55awzrz1#
The documentation说你需要像这样运行nodemon
nodemon [your node app]
。在你的例子中:nodemon app-express.js
。nodemon还有很多其他有用的选项。值得阅读文档。q43xntqr2#
nodemon帮助Web服务器显示状态。当发生错误或Web服务器运行正常时,节点会在控制台上显示日志。但是如果命令中没有输入正确的路径,nodemon就不能运行web服务器。所以nodemon帮助节点运行由
node path/yourApp.js
执行的web服务器。要执行nodemon,请键入
nodemon path/yourApp.js
。