Reputation: 1730
There is a main.js javascript file with programm.
I run it:
node --inspect-brk index.js
Every time when I change something in this file I have to rerun it.
I need some way to let nodejs know that this main.js file was changed and make nodejs rerun it.
Is there a way to watch file changes in main js file runned in nodejs?
Upvotes: 0
Views: 1214
Reputation: 2096
You can use nodemon. It will detect any changes to your directory and rerun the app.
npm install --save-dev nodemon
nodemon --inspect-brk index.js
Upvotes: 1