Skip to content
Advertisement

nodemon watch directory for changes

I know how to do nodemon server.js but what if I want to do nodemon ./src

I want restart node on any changes in the directory of src.

When I do above and it say cannot find module babelpracsrc

I am also doing in another command window : npm run scripts:watch

The script is

"scripts" : {
  "scripts" : "babel src --source-maps-inline --out-dir dist",
  "scripts:watch" : "babel src --watch --source-map-inline --out-dir dist"
},

That runs the watch but I want to run the script in src or dist to see the console.logs

I aslo tried nodemon --watch ./src. It says it can’t find index.js.

I am on windows 7

My working directory is babelprac

Advertisement

Answer

Nodemon expects it just as:

nodemon --watch src server.js

https://github.com/remy/nodemon#monitoring-multiple-directories

nodemon –watch app –watch libs app/server.js

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement