kill process node js without calling process code example
Example: node js kill process
process.exit()
//or
if (condition){process.exit()}
//or
setTimeout((function() {
return process.exit();
}), 5000);
// kill server after 5000ms
//source :
//https://stackabuse.com/how-to-exit-in-node-js/