My package.json script uses the node-dev CLI to run code with the event listener:
process.on('SIGTERM', () => {
console.log('SIGTERM fired...');
});
When I use CTRL+C to halt the server, I get no console notifications.
This should be handled so we can properly exit node-dev servers with CTRL+C. Thank you!