Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the command that is used to exit? I have seen node.exit() but node is not defined and var node = require('node') does not work. It says there is no module called "node".

share|improve this question

4 Answers

up vote 61 down vote accepted

The global process object exposes exit

http://nodejs.org/api/process.html#process_process_exit_code

Take a look at the TJ's Mastering Node book and the section on process.kill() for an example of signal trapping and then ending the process.

share|improve this answer
Coming from PHP world, I think exit in Node.js is a little misleading because it actually stops the server from listening! Correct me if I am wrong, but if I am just handling a request and wants to bail (eq: due to missing query string), a simple return; should suffice? – pixelfreak Mar 2 '12 at 19:55
Just want to add something. If you are handling a request, you should also end() the request as well. Otherwise, it'll just hang. – pixelfreak Mar 3 '12 at 18:16
I tried the exit command to kill node but nothing happen. Can you help me explain why? the video of how I did it dl.dropbox.com/u/8032222/can%20not%20exit%20node.mov – runrunforest Aug 26 '12 at 3:46
You're not in the REPL @runrunforest. See the answer below if you want to terminate the script – scriptfromscratch Sep 4 '12 at 22:59
4  
@pixelfreak, exit isn't misleading at all. You are confused about how Node works. Think of Node as the server itself. It isn't just fired up as needed, like PHP is within a web server like Apache. Node doesn't even have to have anything to do with web servers at all! It's just a host for some JavaScript, with some nifty built-in libraries for doing useful things. – Brad Sep 20 '12 at 14:22

From the official nodejs.org documentation:

process.exit(code=0)

Ends the process with the specified code. If omitted, exit uses the 'success' code 0.

To exit with a 'failure' code:

process.exit(1);
share|improve this answer
Could process.exit(code=0) be rewritten as code = 0; process.exit(0)? – Alison Feb 12 at 8:44
@Alison yes, or more precisely code = 0; process.exit(code); – wprl Feb 21 at 16:29
Is it true that if you're exiting, you probably don't care about the value of code? – Alison Feb 21 at 17:26
You can always yourself determine, depending on that you don't override an already existing error code, where the program exited and with which error code. – Johan S Mar 23 at 22:11

If you want to exit to command line

  • Windows: Ctrl + C , Ctrl + C

  • Mac: Ctrl + Z , Ctrl + Z

or type .exit and press Enter.

share|improve this answer
4  
ctrl + c twice exits in Mac as well, as does ctrl + d – philosodad Jun 28 '12 at 13:49
For linux its also Ctrl + C. – matejkramny May 1 at 22:45

From the command line, .exit is what you want:

$ node
> .exit
$

It's documented in the REPL docs. REPL (Read-Eval-Print-Loop) is what the Node command line is called.

From a normal program, use process.exit([code]).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.