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".
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
The global process object exposes http://nodejs.org/api/process.html#process_process_exit_code Take a look at the TJ's Mastering Node book and the section on |
|||||||||||||
|
|
From the official nodejs.org documentation:
Ends the process with the specified code. If omitted, exit uses the 'success' code 0. To exit with a 'failure' code:
|
|||
|
If you want to exit to command line
or type |
|||||||
|
|
From the command line,
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 |
|||
|
|