0
How do I stop a Node.JS application?
For example, in PHP, we have something like this:
exit;
Or:
die('Mensagem.');
Is there any way to stop the Node.js application this way (or similar), without having to use the Ctrl + C?
0
How do I stop a Node.JS application?
For example, in PHP, we have something like this:
exit;
Or:
die('Mensagem.');
Is there any way to stop the Node.js application this way (or similar), without having to use the Ctrl + C?
Browser other questions tagged node.js
You are not signed in. Login or sign up in order to post.
process.exit()
?– Renan Gomes