Keep the node process alive until SIGINT (ctrl+c) is received
npm install wait-for-sigintA simple utility to keep the node process waiting until SIGINT (usually ctrl+c) is received.
Using npm:
```
npm install wait-for-sigint
`js
var waitForSigint = require('wait-for-sigint');
waitForSigint().then(() => {
console.log('received sigint');
});
`
waitForSigint()` returns a Promise that is resolved when SIGINT has been received.