pm2/examples/sigint.js
2016-04-01 16:59:46 +02:00

9 lines
129 B
JavaScript

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