pm2/examples/v1/sigint.js
2016-08-07 02:16:13 -07:00

9 lines
129 B
JavaScript

process.on('SIGINT', function() {
// Do othing for tests
});
setInterval(function() {
console.log('I\'m alive');
}, 2000);