Answers for "why is nodemon not restarting automatically"

1

nodemon is not restarting

npm install --save-dev nodemon@latest
Posted by: Guest on June-17-2020
0

nodemon not restarting

process.once('SIGUSR2', function () {
  gracefulShutdown(function () {
    process.kill(process.pid, 'SIGUSR2');
  });
});
Posted by: Guest on April-16-2021

Browse Popular Code Answers by Language