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?
You can use nodemon. It will detect any changes to your directory and rerun the app.