最佳答案
我知道如何做 nodemon server.js
,但如果我想做 nodemon ./src
我希望在 src
目录中的任何更改上重新启动节点。
当我这样做,它说 cannot find module babelprac\src
我还在另一个命令窗口中执行: npm run scripts:watch
剧本是
"scripts" : {
"scripts" : "babel src --source-maps-inline --out-dir dist",
"scripts:watch" : "babel src --watch --source-map-inline --out-dir dist"
},
它运行 watch,但是我想在 src 或 dist 中运行脚本来查看 console.log
我也试过 nodemon --watch ./src
,它说找不到 index.js。
我在7号窗口
我的工作目录是 abc 0