I newb in node.js In my project I use PM2 to restart node.js and it works fine.
But, I need to watch folder for changes, start script and not restart it after exit.
For simplicity I use yml for I18n. My goal, when I make changes in yml file, run script to convert it to json and that's all. Wait until new changes in yml file.
PM2 works, but it tries restart script again and again after each exit.
PM2 | App [i18n compile] with id [1] and pid [28803], exited with code [0] via signal [SIGINT] PM2 | Script /home/.../src/i18n/convert.js had too many unstable restarts (16). Stopped. "errored"
May be I should use another tool for this issue?
nodemon
is a tool that will allow you to make a change to a file in a directory and automatically run a scriptnodemon can be installed by
npm install -g nodemon
executing
nodemon script.js
will automatically runnode script.js
when there is either a change toscript.js
or to any other file within the same directory asscript.js