How to exit the program in Node.js?
Posted on In QAWhen fatal error happened, we’d like to kill the program. How to exit the program in Node.js?
You can use:
process.exit()
Here, “process” is a global process object. exit method ends the process.
process.exit([code])
Ends the process with the specified code. If omitted, exit uses the
‘success’ code 0.To exit with a ‘failure’ code:
process.exit(1);
The shell that executed Node.js should see the exit code as 1.