2 Commits

Author SHA1 Message Date
96c5967a35 1.0.11 2019-05-27 15:16:39 +02:00
c21c10d7f2 fix(core): update 2019-05-27 15:16:38 +02:00
3 changed files with 11 additions and 6 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartexit", "name": "@pushrocks/smartexit",
"version": "1.0.10", "version": "1.0.11",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartexit", "name": "@pushrocks/smartexit",
"version": "1.0.10", "version": "1.0.11",
"private": false, "private": false,
"description": "do things before one exists a process", "description": "do things before one exists a process",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -43,20 +43,25 @@ export class SmartExit {
constructor() { constructor() {
// do app specific cleaning before exiting // do app specific cleaning before exiting
process.on('exit', async () => { process.on('exit', async (code) => {
await this.killAll(); if (code === 0) {
console.log('SMARTEXIT: Process wants to exit');
await this.killAll();
}
}); });
// catch ctrl+c event and exit normally // catch ctrl+c event and exit normally
process.on('SIGINT', async () => { process.on('SIGINT', async () => {
console.log('Ctrl-C...'); console.log('SMARTEXIT: Ctrl-C... or SIGINT signal received!');
await this.killAll(); await this.killAll();
}); });
//catch uncaught exceptions, trace, then exit normally //catch uncaught exceptions, trace, then exit normally
process.on('uncaughtException', async err => { process.on('uncaughtException', async err => {
console.log('Ctrl-C...'); console.log('SMARTEXIT: uncaught exception...');
console.log(err);
await this.killAll(); await this.killAll();
process.exit(1);
}); });
} }
} }