signal-ignore.js 162 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 function noop() { console.log('IGNORED!') } process.on('SIGTERM',noop); process.on('SIGINT',noop); setInterval(function (){ console.log('heartbeat'); }, 100);