Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // add to index.js
  2. exitOnSignal('SIGINT');
  3. exitOnSignal('SIGTERM');
  4.  
  5. function exitOnSignal(signal) {
  6. process.on(signal, function() {
  7. console.log('\ncaught ' + signal + ', exiting');
  8. // perform all required cleanup
  9. process.exit(1);
  10. });
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement