我想设置nodemon在服务器重启时运行" prestart" 脚本,原因是,我使用webpack并且我想构建 bundle .js 每次文件更改时,我都没有使用webpack-dev-server
因为我不知道如何在运行现有节点应用程序的情况下进行设置,我的后端已经{ {1}},对此的帮助将不胜感激。
我一直在工作的方式是:每次我对代码进行更改时运行node.js
,但这太费劲了。
这里是 package.json 的npm start
对象,这样您就可以了解正在发生的事情:
scripts
答案 0 :(得分:2)
我完成此操作的方法是使用 nodemon.json
属性创建exec
文件:
{
// ... Other conf (see an example in https://github.com/remy/nodemon/blob/master/doc/sample-nodemon.md)
"watch": [
"app" // Set your directories/files to watch
],
"exec": "npm run prestart && node server/index.js"
}