2012-02-27 20:09:34 +01:00
|
|
|
# process
|
|
|
|
|
|
|
|
<!-- type=global -->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
The `process` object is a global object and can be accessed from anywhere.
|
2015-11-28 00:30:32 +01:00
|
|
|
It is an instance of [`EventEmitter`][].
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## Event: 'beforeExit'
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.12
|
|
|
|
-->
|
2013-09-07 02:47:56 +02:00
|
|
|
|
2016-04-21 00:12:40 +02:00
|
|
|
This event is emitted when Node.js empties its event loop and has nothing else
|
|
|
|
to schedule. Normally, Node.js exits when there is no work scheduled, but a
|
|
|
|
listener for `'beforeExit'` can make asynchronous calls, and cause Node.js to
|
2016-02-17 20:10:46 +01:00
|
|
|
continue.
|
2013-09-07 02:47:56 +02:00
|
|
|
|
2016-04-21 00:12:40 +02:00
|
|
|
`'beforeExit'` is not emitted for conditions causing explicit termination, such
|
2016-02-17 20:10:46 +01:00
|
|
|
as [`process.exit()`][] or uncaught exceptions, and should not be used as an
|
2015-11-28 00:30:32 +01:00
|
|
|
alternative to the `'exit'` event unless the intention is to schedule more work.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-02-18 23:38:21 +01:00
|
|
|
## Event: 'disconnect'
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2016-02-18 23:38:21 +01:00
|
|
|
|
|
|
|
If process is spawned with an IPC channel, `'disconnect'` will be emitted when
|
|
|
|
IPC channel is closed. Read more in [child_process `'disconnect'` event][] doc.
|
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## Event: 'exit'
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.7
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-12-31 23:48:20 +01:00
|
|
|
Emitted when the process is about to exit. There is no way to prevent the
|
2015-11-28 00:30:32 +01:00
|
|
|
exiting of the event loop at this point, and once all `'exit'` listeners have
|
2013-12-31 23:48:20 +01:00
|
|
|
finished running the process will exit. Therefore you **must** only perform
|
|
|
|
**synchronous** operations in this handler. This is a good hook to perform
|
|
|
|
checks on the module's state (like for unit tests). The callback takes one
|
|
|
|
argument, the code the process is exiting with.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-12-03 20:11:22 +01:00
|
|
|
This event is only emitted when Node.js exits explicitly by process.exit() or
|
2015-09-16 23:31:42 +02:00
|
|
|
implicitly by the event loop draining.
|
2015-09-14 19:28:02 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
Example of listening for `'exit'`:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
process.on('exit', (code) => {
|
|
|
|
// do *NOT* do this
|
|
|
|
setTimeout(() => {
|
|
|
|
console.log('This will not run');
|
|
|
|
}, 0);
|
|
|
|
console.log('About to exit with code:', code);
|
|
|
|
});
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-06-15 04:06:22 +02:00
|
|
|
## Event: 'message'
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.10
|
|
|
|
-->
|
2015-06-15 04:06:22 +02:00
|
|
|
|
|
|
|
* `message` {Object} a parsed JSON object or primitive value
|
2015-11-28 00:30:32 +01:00
|
|
|
* `sendHandle` {Handle object} a [`net.Socket`][] or [`net.Server`][] object, or
|
2015-06-15 04:06:22 +02:00
|
|
|
undefined.
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
Messages sent by [`ChildProcess.send()`][] are obtained using the `'message'`
|
2015-06-15 04:06:22 +02:00
|
|
|
event on the child's process object.
|
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## Event: 'rejectionHandled'
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v1.4.1
|
|
|
|
-->
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Emitted whenever a Promise was rejected and an error handler was attached to it
|
2016-02-18 23:38:21 +01:00
|
|
|
(for example with [`promise.catch()`][]) later than after an event loop turn. This event
|
2015-11-05 17:00:46 +01:00
|
|
|
is emitted with the following arguments:
|
2013-10-25 23:05:39 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
- `p` the promise that was previously emitted in an `'unhandledRejection'`
|
|
|
|
event, but which has now gained a rejection handler.
|
2013-10-25 23:05:39 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
There is no notion of a top level for a promise chain at which rejections can
|
|
|
|
always be handled. Being inherently asynchronous in nature, a promise rejection
|
2016-02-01 05:49:05 +01:00
|
|
|
can be handled at a future point in time — possibly much later than the
|
2015-11-05 17:00:46 +01:00
|
|
|
event loop turn it takes for the `'unhandledRejection'` event to be emitted.
|
|
|
|
|
|
|
|
Another way of stating this is that, unlike in synchronous code where there is
|
|
|
|
an ever-growing list of unhandled exceptions, with promises there is a
|
|
|
|
growing-and-shrinking list of unhandled rejections. In synchronous code, the
|
2015-11-28 00:30:32 +01:00
|
|
|
`'uncaughtException'` event tells you when the list of unhandled exceptions
|
2015-11-05 17:00:46 +01:00
|
|
|
grows. And in asynchronous code, the `'unhandledRejection'` event tells you
|
2015-11-28 00:30:32 +01:00
|
|
|
when the list of unhandled rejections grows, while the `'rejectionHandled'`
|
2015-11-05 17:00:46 +01:00
|
|
|
event tells you when the list of unhandled rejections shrinks.
|
|
|
|
|
|
|
|
For example using the rejection detection hooks in order to keep a map of all
|
|
|
|
the rejected promise reasons at a given time:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const unhandledRejections = new Map();
|
|
|
|
process.on('unhandledRejection', (reason, p) => {
|
|
|
|
unhandledRejections.set(p, reason);
|
|
|
|
});
|
|
|
|
process.on('rejectionHandled', (p) => {
|
|
|
|
unhandledRejections.delete(p);
|
|
|
|
});
|
|
|
|
```
|
2013-10-25 23:05:39 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
This map will grow and shrink over time, reflecting rejections that start
|
|
|
|
unhandled and then become handled. You could record the errors in some error
|
|
|
|
log, either periodically (probably best for long-running programs, allowing
|
|
|
|
you to clear the map, which in the case of a very buggy program could grow
|
|
|
|
indefinitely) or upon process exit (more convenient for scripts).
|
2013-10-25 23:05:39 +02:00
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## Event: 'uncaughtException'
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.18
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-02-17 20:10:46 +01:00
|
|
|
The `'uncaughtException'` event is emitted when an exception bubbles all the
|
2016-04-21 00:12:40 +02:00
|
|
|
way back to the event loop. By default, Node.js handles such exceptions by
|
2016-02-17 20:10:46 +01:00
|
|
|
printing the stack trace to stderr and exiting. Adding a handler for the
|
|
|
|
`'uncaughtException'` event overrides this default behavior.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-02-17 20:10:46 +01:00
|
|
|
For example:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
process.on('uncaughtException', (err) => {
|
|
|
|
console.log(`Caught exception: ${err}`);
|
|
|
|
});
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
setTimeout(() => {
|
|
|
|
console.log('This will still run.');
|
|
|
|
}, 500);
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
// Intentionally cause an exception, but don't catch it.
|
|
|
|
nonexistentFunc();
|
|
|
|
console.log('This will not run.');
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-02-17 20:10:46 +01:00
|
|
|
### Warning: Using `'uncaughtException'` correctly
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-02-17 20:10:46 +01:00
|
|
|
Note that `'uncaughtException'` is a crude mechanism for exception handling
|
|
|
|
intended to be used only as a last resort. The event *should not* be used as
|
|
|
|
an equivalent to `On Error Resume Next`. Unhandled exceptions inherently mean
|
|
|
|
that an application is in an undefined state. Attempting to resume application
|
|
|
|
code without properly recovering from the exception can cause additional
|
|
|
|
unforeseen and unpredictable issues.
|
2012-07-18 02:13:55 +02:00
|
|
|
|
2016-02-10 19:30:30 +01:00
|
|
|
Exceptions thrown from within the event handler will not be caught. Instead the
|
|
|
|
process will exit with a non zero exit code and the stack trace will be printed.
|
|
|
|
This is to avoid infinite recursion.
|
|
|
|
|
2016-02-17 20:10:46 +01:00
|
|
|
Attempting to resume normally after an uncaught exception can be similar to
|
|
|
|
pulling out of the power cord when upgrading a computer -- nine out of ten
|
|
|
|
times nothing happens - but the 10th time, the system becomes corrupted.
|
2012-07-18 02:13:55 +02:00
|
|
|
|
2016-02-17 20:10:46 +01:00
|
|
|
The correct use of `'uncaughtException'` is to perform synchronous cleanup
|
|
|
|
of allocated resources (e.g. file descriptors, handles, etc) before shutting
|
|
|
|
down the process. It is not safe to resume normal operation after
|
|
|
|
`'uncaughtException'`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-02-25 01:44:10 +01:00
|
|
|
## Event: 'unhandledRejection'
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v1.4.1
|
|
|
|
-->
|
2015-02-25 01:44:10 +01:00
|
|
|
|
|
|
|
Emitted whenever a `Promise` is rejected and no error handler is attached to
|
|
|
|
the promise within a turn of the event loop. When programming with promises
|
|
|
|
exceptions are encapsulated as rejected promises. Such promises can be caught
|
2016-02-18 23:38:21 +01:00
|
|
|
and handled using [`promise.catch()`][] and rejections are propagated through
|
2015-02-25 01:44:10 +01:00
|
|
|
a promise chain. This event is useful for detecting and keeping track of
|
|
|
|
promises that were rejected whose rejections were not handled yet. This event
|
|
|
|
is emitted with the following arguments:
|
|
|
|
|
2016-04-21 00:12:40 +02:00
|
|
|
- `reason` the object with which the promise was rejected (usually an
|
2016-02-17 20:10:46 +01:00
|
|
|
[`Error`][] instance).
|
2015-02-25 01:44:10 +01:00
|
|
|
- `p` the promise that was rejected.
|
|
|
|
|
|
|
|
Here is an example that logs every unhandled rejection to the console
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
process.on('unhandledRejection', (reason, p) => {
|
|
|
|
console.log("Unhandled Rejection at: Promise ", p, " reason: ", reason);
|
|
|
|
// application specific logging, throwing an error, or other logic here
|
|
|
|
});
|
|
|
|
```
|
2015-02-25 01:44:10 +01:00
|
|
|
|
|
|
|
For example, here is a rejection that will trigger the `'unhandledRejection'`
|
|
|
|
event:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
somePromise.then((res) => {
|
2016-03-11 03:33:40 +01:00
|
|
|
return reportToUser(JSON.pasre(res)); // note the typo (`pasre`)
|
2016-01-17 18:39:07 +01:00
|
|
|
}); // no `.catch` or `.then`
|
|
|
|
```
|
2015-02-25 01:44:10 +01:00
|
|
|
|
2015-02-27 00:17:15 +01:00
|
|
|
Here is an example of a coding pattern that will also trigger
|
|
|
|
`'unhandledRejection'`:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
function SomeResource() {
|
|
|
|
// Initially set the loaded status to a rejected promise
|
|
|
|
this.loaded = Promise.reject(new Error('Resource not yet loaded!'));
|
|
|
|
}
|
2015-02-27 00:17:15 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
var resource = new SomeResource();
|
|
|
|
// no .catch or .then on resource.loaded for at least a turn
|
|
|
|
```
|
2015-02-27 00:17:15 +01:00
|
|
|
|
|
|
|
In cases like this, you may not want to track the rejection as a developer
|
|
|
|
error like you would for other `'unhandledRejection'` events. To address
|
2016-02-18 23:38:21 +01:00
|
|
|
this, you can either attach a dummy [`.catch(() => { })`][`promise.catch()`] handler to
|
2015-02-27 00:17:15 +01:00
|
|
|
`resource.loaded`, preventing the `'unhandledRejection'` event from being
|
2016-01-05 11:49:54 +01:00
|
|
|
emitted, or you can use the [`'rejectionHandled'`][] event.
|
2015-02-27 00:17:15 +01:00
|
|
|
|
2016-01-20 20:38:35 +01:00
|
|
|
## Event: 'warning'
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v6.0.0
|
|
|
|
-->
|
2016-01-20 20:38:35 +01:00
|
|
|
|
|
|
|
Emitted whenever Node.js emits a process warning.
|
|
|
|
|
|
|
|
A process warning is similar to an error in that it describes exceptional
|
|
|
|
conditions that are being brought to the user's attention. However, warnings
|
|
|
|
are not part of the normal Node.js and JavaScript error handling flow.
|
|
|
|
Node.js can emit warnings whenever it detects bad coding practices that could
|
|
|
|
lead to sub-optimal application performance, bugs or security vulnerabilities.
|
|
|
|
|
|
|
|
The event handler for `'warning'` events is called with a single `warning`
|
|
|
|
argument whose value is an `Error` object. There are three key properties that
|
|
|
|
describe the warning:
|
|
|
|
|
|
|
|
* `name` - The name of the warning (currently `Warning` by default).
|
|
|
|
* `message` - A system-provided description of the warning.
|
|
|
|
* `stack` - A stack trace to the location in the code where the warning was
|
|
|
|
issued.
|
|
|
|
|
|
|
|
```js
|
|
|
|
process.on('warning', (warning) => {
|
|
|
|
console.warn(warning.name); // Print the warning name
|
|
|
|
console.warn(warning.message); // Print the warning message
|
|
|
|
console.warn(warning.stack); // Print the stack trace
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
By default, Node.js will print process warnings to `stderr`. The `--no-warnings`
|
|
|
|
command-line option can be used to suppress the default console output but the
|
|
|
|
`'warning'` event will still be emitted by the `process` object.
|
|
|
|
|
|
|
|
The following example illustrates the warning that is printed to `stderr` when
|
|
|
|
too many listeners have been added to an event
|
|
|
|
|
|
|
|
```
|
|
|
|
$ node
|
|
|
|
> event.defaultMaxListeners = 1;
|
|
|
|
> process.on('foo', () => {});
|
|
|
|
> process.on('foo', () => {});
|
|
|
|
> (node:38638) Warning: Possible EventEmitter memory leak detected. 2 foo
|
|
|
|
... listeners added. Use emitter.setMaxListeners() to increase limit
|
|
|
|
```
|
|
|
|
|
|
|
|
In contrast, the following example turns off the default warning output and
|
|
|
|
adds a custom handler to the `'warning'` event:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ node --no-warnings
|
|
|
|
> var p = process.on('warning', (warning) => console.warn('Do not do that!'));
|
|
|
|
> event.defaultMaxListeners = 1;
|
|
|
|
> process.on('foo', () => {});
|
|
|
|
> process.on('foo', () => {});
|
|
|
|
> Do not do that!
|
|
|
|
```
|
|
|
|
|
|
|
|
The `--trace-warnings` command-line option can be used to have the default
|
|
|
|
console output for warnings include the full stack trace of the warning.
|
|
|
|
|
|
|
|
### Emitting custom warnings
|
|
|
|
|
|
|
|
The [`process.emitWarning()`][process_emit_warning] method can be used to issue
|
|
|
|
custom or application specific warnings.
|
|
|
|
|
|
|
|
```js
|
|
|
|
// Emit a warning using a string...
|
|
|
|
process.emitWarning('Something happened!');
|
|
|
|
// Prints: (node 12345) Warning: Something happened!
|
|
|
|
|
|
|
|
// Emit a warning using an object...
|
|
|
|
process.emitWarning('Something Happened!', 'CustomWarning');
|
|
|
|
// Prints: (node 12345) CustomWarning: Something happened!
|
|
|
|
|
|
|
|
// Emit a warning using a custom Error object...
|
|
|
|
class CustomWarning extends Error {
|
|
|
|
constructor(message) {
|
|
|
|
super(message);
|
|
|
|
this.name = 'CustomWarning';
|
|
|
|
Error.captureStackTrace(this, CustomWarning);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const myWarning = new CustomWarning('Something happened!');
|
|
|
|
process.emitWarning(myWarning);
|
|
|
|
// Prints: (node 12345) CustomWarning: Something happened!
|
|
|
|
```
|
|
|
|
|
|
|
|
### Emitting custom deprecation warnings
|
|
|
|
|
|
|
|
Custom deprecation warnings can be emitted by setting the `name` of a custom
|
|
|
|
warning to `DeprecationWarning`. For instance:
|
|
|
|
|
|
|
|
```js
|
|
|
|
process.emitWarning('This API is deprecated', 'DeprecationWarning');
|
|
|
|
```
|
|
|
|
|
|
|
|
Or,
|
|
|
|
|
|
|
|
```js
|
|
|
|
const err = new Error('This API is deprecated');
|
|
|
|
err.name = 'DeprecationWarning';
|
|
|
|
process.emitWarning(err);
|
|
|
|
```
|
|
|
|
|
|
|
|
Launching Node.js using the `--throw-deprecation` command line flag will
|
|
|
|
cause custom deprecation warnings to be thrown as exceptions.
|
|
|
|
|
|
|
|
Using the `--trace-deprecation` command line flag will cause the custom
|
|
|
|
deprecation to be printed to `stderr` along with the stack trace.
|
|
|
|
|
|
|
|
Using the `--no-deprecation` command line flag will suppress all reporting
|
|
|
|
of the custom deprecation.
|
|
|
|
|
|
|
|
The `*-deprecation` command line flags only affect warnings that use the name
|
|
|
|
`DeprecationWarning`.
|
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## Exit Codes
|
2015-02-25 01:44:10 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Node.js will normally exit with a `0` status code when no more async
|
|
|
|
operations are pending. The following status codes are used in other
|
|
|
|
cases:
|
2015-02-25 01:44:10 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
* `1` **Uncaught Fatal Exception** - There was an uncaught exception,
|
2016-02-18 23:38:21 +01:00
|
|
|
and it was not handled by a domain or an [`'uncaughtException'`][] event
|
2015-11-05 17:00:46 +01:00
|
|
|
handler.
|
|
|
|
* `2` - Unused (reserved by Bash for builtin misuse)
|
|
|
|
* `3` **Internal JavaScript Parse Error** - The JavaScript source code
|
|
|
|
internal in Node.js's bootstrapping process caused a parse error. This
|
|
|
|
is extremely rare, and generally can only happen during development
|
|
|
|
of Node.js itself.
|
|
|
|
* `4` **Internal JavaScript Evaluation Failure** - The JavaScript
|
|
|
|
source code internal in Node.js's bootstrapping process failed to
|
|
|
|
return a function value when evaluated. This is extremely rare, and
|
|
|
|
generally can only happen during development of Node.js itself.
|
|
|
|
* `5` **Fatal Error** - There was a fatal unrecoverable error in V8.
|
|
|
|
Typically a message will be printed to stderr with the prefix `FATAL
|
|
|
|
ERROR`.
|
|
|
|
* `6` **Non-function Internal Exception Handler** - There was an
|
|
|
|
uncaught exception, but the internal fatal exception handler
|
|
|
|
function was somehow set to a non-function, and could not be called.
|
|
|
|
* `7` **Internal Exception Handler Run-Time Failure** - There was an
|
|
|
|
uncaught exception, and the internal fatal exception handler
|
|
|
|
function itself threw an error while attempting to handle it. This
|
2016-02-18 23:38:21 +01:00
|
|
|
can happen, for example, if a [`'uncaughtException'`][] or
|
2015-11-05 17:00:46 +01:00
|
|
|
`domain.on('error')` handler throws an error.
|
|
|
|
* `8` - Unused. In previous versions of Node.js, exit code 8 sometimes
|
|
|
|
indicated an uncaught exception.
|
|
|
|
* `9` - **Invalid Argument** - Either an unknown option was specified,
|
|
|
|
or an option requiring a value was provided without a value.
|
|
|
|
* `10` **Internal JavaScript Run-Time Failure** - The JavaScript
|
|
|
|
source code internal in Node.js's bootstrapping process threw an error
|
|
|
|
when the bootstrapping function was called. This is extremely rare,
|
|
|
|
and generally can only happen during development of Node.js itself.
|
|
|
|
* `12` **Invalid Debug Argument** - The `--debug` and/or `--debug-brk`
|
|
|
|
options were set, but an invalid port number was chosen.
|
|
|
|
* `>128` **Signal Exits** - If Node.js receives a fatal signal such as
|
|
|
|
`SIGKILL` or `SIGHUP`, then its exit code will be `128` plus the
|
|
|
|
value of the signal code. This is a standard Unix practice, since
|
|
|
|
exit codes are defined to be 7-bit integers, and signal exits set
|
|
|
|
the high-order bit, and then contain the value of the signal code.
|
2015-02-27 00:17:15 +01:00
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## Signal Events
|
|
|
|
|
|
|
|
<!--type=event-->
|
2013-09-19 12:27:06 +02:00
|
|
|
<!--name=SIGINT, SIGHUP, etc.-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
Emitted when the processes receives a signal. See sigaction(2) for a list of
|
2015-11-28 00:30:32 +01:00
|
|
|
standard POSIX signal names such as `SIGINT`, `SIGHUP`, etc.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
Example of listening for `SIGINT`:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
// Start reading from stdin so we don't exit.
|
|
|
|
process.stdin.resume();
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
process.on('SIGINT', () => {
|
|
|
|
console.log('Got SIGINT. Press Control-D to exit.');
|
|
|
|
});
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
An easy way to send the `SIGINT` signal is with `Control-C` in most terminal
|
|
|
|
programs.
|
|
|
|
|
2013-10-31 00:19:17 +01:00
|
|
|
Note:
|
|
|
|
|
2015-08-13 18:14:34 +02:00
|
|
|
- `SIGUSR1` is reserved by Node.js to start the debugger. It's possible to
|
2013-10-31 00:19:17 +01:00
|
|
|
install a listener but that won't stop the debugger from starting.
|
2016-04-21 00:12:40 +02:00
|
|
|
- `SIGTERM` and `SIGINT` have default handlers on non-Windows platforms that
|
|
|
|
resets the terminal mode before exiting with code `128 + signal number`. If
|
|
|
|
one of these signals has a listener installed, its default behavior will be
|
2016-02-17 20:10:46 +01:00
|
|
|
removed (Node.js will no longer exit).
|
2015-09-14 19:28:02 +02:00
|
|
|
- `SIGPIPE` is ignored by default. It can have a listener installed.
|
2013-10-31 00:19:17 +01:00
|
|
|
- `SIGHUP` is generated on Windows when the console window is closed, and on other
|
|
|
|
platforms under various similar conditions, see signal(7). It can have a
|
2015-08-13 18:14:34 +02:00
|
|
|
listener installed, however Node.js will be unconditionally terminated by
|
2015-02-07 11:25:13 +01:00
|
|
|
Windows about 10 seconds later. On non-Windows platforms, the default
|
2015-09-09 23:21:11 +02:00
|
|
|
behavior of `SIGHUP` is to terminate Node.js, but once a listener has been
|
|
|
|
installed its default behavior will be removed.
|
2013-10-31 00:19:17 +01:00
|
|
|
- `SIGTERM` is not supported on Windows, it can be listened on.
|
2014-01-15 23:40:58 +01:00
|
|
|
- `SIGINT` from the terminal is supported on all platforms, and can usually be
|
|
|
|
generated with `CTRL+C` (though this may be configurable). It is not generated
|
|
|
|
when terminal raw mode is enabled.
|
2016-04-21 00:12:40 +02:00
|
|
|
- `SIGBREAK` is delivered on Windows when `CTRL+BREAK` is pressed, on
|
2016-02-17 20:10:46 +01:00
|
|
|
non-Windows
|
2013-10-31 00:19:17 +01:00
|
|
|
platforms it can be listened on, but there is no way to send or generate it.
|
2016-04-21 00:12:40 +02:00
|
|
|
- `SIGWINCH` is delivered when the console has been resized. On Windows, this
|
|
|
|
will only happen on write to the console when the cursor is being moved, or
|
2016-02-17 20:10:46 +01:00
|
|
|
when a readable tty is used in raw mode.
|
2013-10-31 00:19:17 +01:00
|
|
|
- `SIGKILL` cannot have a listener installed, it will unconditionally terminate
|
2015-08-13 18:14:34 +02:00
|
|
|
Node.js on all platforms.
|
2013-10-31 00:19:17 +01:00
|
|
|
- `SIGSTOP` cannot have a listener installed.
|
2014-01-15 23:40:58 +01:00
|
|
|
|
2015-09-14 19:28:02 +02:00
|
|
|
Note that Windows does not support sending Signals, but Node.js offers some
|
2016-02-18 23:38:21 +01:00
|
|
|
emulation with [`process.kill()`][], and [`ChildProcess.kill()`][]. Sending signal `0`
|
2015-09-16 23:31:42 +02:00
|
|
|
can be used to test for the existence of a process. Sending `SIGINT`,
|
|
|
|
`SIGTERM`, and `SIGKILL` cause the unconditional termination of the target
|
|
|
|
process.
|
2015-09-14 19:28:02 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.abort()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.0
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
This causes Node.js to emit an abort. This will cause Node.js to exit and
|
|
|
|
generate a core file.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.arch
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.0
|
|
|
|
-->
|
2013-07-08 19:09:44 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
What processor architecture you're running on: `'arm'`, `'ia32'`, or `'x64'`.
|
2013-07-08 19:09:44 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log('This processor architecture is ' + process.arch);
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## process.argv
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.27
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
An array containing the command line arguments. The first element will be
|
2015-08-13 18:14:34 +02:00
|
|
|
'node', the second element will be the name of the JavaScript file. The
|
2010-10-28 14:18:16 +02:00
|
|
|
next elements will be any additional command line arguments.
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
// print process.argv
|
|
|
|
process.argv.forEach((val, index, array) => {
|
|
|
|
console.log(`${index}: ${val}`);
|
|
|
|
});
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
This will generate:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
$ node process-2.js one two=three four
|
|
|
|
0: node
|
|
|
|
1: /Users/mjr/work/node/process-2.js
|
|
|
|
2: one
|
|
|
|
3: two=three
|
|
|
|
4: four
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.chdir(directory)
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.17
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Changes the current working directory of the process or throws an exception if that fails.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log(`Starting directory: ${process.cwd()}`);
|
|
|
|
try {
|
|
|
|
process.chdir('/tmp');
|
|
|
|
console.log(`New directory: ${process.cwd()}`);
|
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
console.log(`chdir: ${err}`);
|
|
|
|
}
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.config
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
An Object containing the JavaScript representation of the configure options
|
|
|
|
that were used to compile the current Node.js executable. This is the same as
|
2015-11-28 00:30:32 +01:00
|
|
|
the `config.gypi` file that was produced when running the `./configure` script.
|
2013-05-23 03:04:36 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
An example of the possible output looks like:
|
2013-05-23 03:04:36 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
{
|
|
|
|
target_defaults:
|
|
|
|
{ cflags: [],
|
|
|
|
default_configuration: 'Release',
|
|
|
|
defines: [],
|
|
|
|
include_dirs: [],
|
|
|
|
libraries: [] },
|
|
|
|
variables:
|
|
|
|
{
|
|
|
|
host_arch: 'x64',
|
|
|
|
node_install_npm: 'true',
|
|
|
|
node_prefix: '',
|
|
|
|
node_shared_cares: 'false',
|
|
|
|
node_shared_http_parser: 'false',
|
|
|
|
node_shared_libuv: 'false',
|
|
|
|
node_shared_zlib: 'false',
|
|
|
|
node_use_dtrace: 'false',
|
|
|
|
node_use_openssl: 'true',
|
|
|
|
node_shared_openssl: 'false',
|
|
|
|
strict_aliasing: 'true',
|
|
|
|
target_arch: 'x64',
|
|
|
|
v8_use_snapshot: 'true'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
2011-12-15 02:02:15 +01:00
|
|
|
|
2016-04-19 06:26:30 +02:00
|
|
|
*Note: the `process.config` property is **not** read-only and there are existing
|
|
|
|
modules in the ecosystem that are known to extend, modify, or entirely replace
|
|
|
|
the value of `process.config`.*
|
|
|
|
|
2015-12-27 03:29:33 +01:00
|
|
|
## process.connected
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.2
|
|
|
|
-->
|
2011-12-15 02:02:15 +01:00
|
|
|
|
2016-02-18 23:38:21 +01:00
|
|
|
* {Boolean} Set to `false` after `process.disconnect()` is called
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-02-18 23:38:21 +01:00
|
|
|
If `process.connected` is `false`, it is no longer possible to send messages.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-04-05 15:17:48 +02:00
|
|
|
## process.cpuUsage([previousValue])
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- TODO add YAML block when cpuUsage is in a release -->
|
2016-04-05 15:17:48 +02:00
|
|
|
|
|
|
|
Returns the user and system CPU time usage of the current process, in an object
|
|
|
|
with properties `user` and `system`, whose values are microsecond values
|
|
|
|
(millionth of a second). These values measure time spent in user and
|
|
|
|
system code respectively, and may end up being greater than actual elapsed time
|
|
|
|
if multiple CPU cores are performing work for this process.
|
|
|
|
|
|
|
|
The result of a previous call to `process.cpuUsage()` can be passed as the
|
|
|
|
argument to the function, to get a diff reading.
|
|
|
|
|
|
|
|
```js
|
|
|
|
const startUsage = process.cpuUsage();
|
|
|
|
// { user: 38579, system: 6986 }
|
|
|
|
|
|
|
|
// spin the CPU for 500 milliseconds
|
|
|
|
const now = Date.now();
|
|
|
|
while (Date.now() - now < 500);
|
|
|
|
|
|
|
|
console.log(process.cpuUsage(startUsage));
|
|
|
|
// { user: 514883, system: 11226 }
|
|
|
|
```
|
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.cwd()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.8
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Returns the current working directory of the process.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log(`Current directory: ${process.cwd()}`);
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.disconnect()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.2
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Close the IPC channel to the parent process, allowing this child to exit
|
|
|
|
gracefully once there are no other connections keeping it alive.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
Identical to the parent process's [`ChildProcess.disconnect()`][].
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
If Node.js was not spawned with an IPC channel, `process.disconnect()` will be
|
|
|
|
undefined.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## process.env
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.27
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
An object containing the user environment. See environ(7).
|
|
|
|
|
2013-11-11 20:51:34 +01:00
|
|
|
An example of this object looks like:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
{ TERM: 'xterm-256color',
|
|
|
|
SHELL: '/usr/local/bin/bash',
|
|
|
|
USER: 'maciej',
|
|
|
|
PATH: '~/.bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin',
|
|
|
|
PWD: '/Users/maciej',
|
|
|
|
EDITOR: 'vim',
|
|
|
|
SHLVL: '1',
|
|
|
|
HOME: '/Users/maciej',
|
|
|
|
LOGNAME: 'maciej',
|
|
|
|
_: '/usr/local/bin/node' }
|
|
|
|
```
|
2013-11-11 20:51:34 +01:00
|
|
|
|
|
|
|
You can write to this object, but changes won't be reflected outside of your
|
|
|
|
process. That means that the following won't work:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
$ node -e 'process.env.foo = "bar"' && echo $foo
|
|
|
|
```
|
2013-11-11 20:51:34 +01:00
|
|
|
|
|
|
|
But this will:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
process.env.foo = 'bar';
|
|
|
|
console.log(process.env.foo);
|
|
|
|
```
|
2013-11-11 20:51:34 +01:00
|
|
|
|
2016-01-28 04:27:56 +01:00
|
|
|
Assigning a property on `process.env` will implicitly convert the value
|
|
|
|
to a string.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
process.env.test = null;
|
|
|
|
console.log(process.env.test);
|
|
|
|
// => 'null'
|
|
|
|
process.env.test = undefined;
|
|
|
|
console.log(process.env.test);
|
|
|
|
// => 'undefined'
|
|
|
|
```
|
|
|
|
|
|
|
|
Use `delete` to delete a property from `process.env`.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
process.env.TEST = 1;
|
|
|
|
delete process.env.TEST;
|
|
|
|
console.log(process.env.TEST);
|
|
|
|
// => undefined
|
|
|
|
```
|
|
|
|
|
2016-01-20 20:38:35 +01:00
|
|
|
## process.emitWarning(warning[, name][, ctor])
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v6.0.0
|
|
|
|
-->
|
2016-01-20 20:38:35 +01:00
|
|
|
|
|
|
|
* `warning` {String | Error} The warning to emit.
|
|
|
|
* `name` {String} When `warning` is a String, `name` is the name to use
|
|
|
|
for the warning. Default: `Warning`.
|
|
|
|
* `ctor` {Function} When `warning` is a String, `ctor` is an optional
|
|
|
|
function used to limit the generated stack trace. Default
|
|
|
|
`process.emitWarning`
|
|
|
|
|
|
|
|
The `process.emitWarning()` method can be used to emit custom or application
|
|
|
|
specific process warnings. These can be listened for by adding a handler to the
|
|
|
|
[`process.on('warning')`][process_warning] event.
|
|
|
|
|
|
|
|
```js
|
|
|
|
// Emit a warning using a string...
|
|
|
|
process.emitWarning('Something happened!');
|
|
|
|
// Emits: (node: 56338) Warning: Something happened!
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
// Emit a warning using a string and a name...
|
|
|
|
process.emitWarning('Something Happened!', 'CustomWarning');
|
|
|
|
// Emits: (node:56338) CustomWarning: Something Happened!
|
|
|
|
```
|
|
|
|
|
|
|
|
In each of the previous examples, an `Error` object is generated internally by
|
|
|
|
`process.emitWarning()` and passed through to the
|
|
|
|
[`process.on('warning')`][process_warning] event.
|
|
|
|
|
|
|
|
```
|
|
|
|
process.on('warning', (warning) => {
|
|
|
|
console.warn(warning.name);
|
|
|
|
console.warn(warning.message);
|
|
|
|
console.warn(warning.stack);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
If `warning` is passed as an `Error` object, it will be passed through to the
|
|
|
|
`process.on('warning')` event handler unmodified (and the optional `name`
|
|
|
|
and `ctor` arguments will be ignored):
|
|
|
|
|
|
|
|
```
|
|
|
|
// Emit a warning using an Error object...
|
|
|
|
const myWarning = new Error('Warning! Something happened!');
|
|
|
|
myWarning.name = 'CustomWarning';
|
|
|
|
|
|
|
|
process.emitWarning(myWarning);
|
|
|
|
// Emits: (node:56338) CustomWarning: Warning! Something Happened!
|
|
|
|
```
|
|
|
|
|
|
|
|
A `TypeError` is thrown if `warning` is anything other than a string or `Error`
|
|
|
|
object.
|
|
|
|
|
|
|
|
Note that while process warnings use `Error` objects, the process warning
|
|
|
|
mechanism is **not** a replacement for normal error handling mechanisms.
|
|
|
|
|
|
|
|
The following additional handling is implemented if the warning `name` is
|
|
|
|
`DeprecationWarning`:
|
|
|
|
|
|
|
|
* If the `--throw-deprecation` command-line flag is used, the deprecation
|
|
|
|
warning is thrown as an exception rather than being emitted as an event.
|
|
|
|
* If the `--no-deprecation` command-line flag is used, the deprecation
|
|
|
|
warning is suppressed.
|
|
|
|
* If the `--trace-deprecation` command-line flag is used, the deprecation
|
|
|
|
warning is printed to `stderr` along with the full stack trace.
|
|
|
|
|
|
|
|
### Avoiding duplicate warnings
|
|
|
|
|
|
|
|
As a best practice, warnings should be emitted only once per process. To do
|
|
|
|
so, it is recommended to place the `emitWarning()` behind a simple boolean
|
|
|
|
flag as illustrated in the example below:
|
|
|
|
|
|
|
|
```
|
|
|
|
var warned = false;
|
|
|
|
function emitMyWarning() {
|
|
|
|
if (!warned) {
|
|
|
|
process.emitWarning('Only warn once!');
|
|
|
|
warned = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
emitMyWarning();
|
|
|
|
// Emits: (node: 56339) Warning: Only warn once!
|
|
|
|
emitMyWarning();
|
|
|
|
// Emits nothing
|
|
|
|
```
|
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.execArgv
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
This is the set of Node.js-specific command line options from the
|
|
|
|
executable that started the process. These options do not show up in
|
2016-02-18 23:38:21 +01:00
|
|
|
[`process.argv`][], and do not include the Node.js executable, the name of
|
2015-11-05 17:00:46 +01:00
|
|
|
the script, or any options following the script name. These options
|
|
|
|
are useful in order to spawn child processes with the same execution
|
|
|
|
environment as the parent.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
$ node --harmony script.js --version
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
results in process.execArgv:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
['--harmony']
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
and process.argv:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
['/usr/local/bin/node', 'script.js', '--version']
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
## process.execPath
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.100
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
This is the absolute pathname of the executable that started the process.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
/usr/local/bin/node
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## process.exit([code])
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.13
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-04-27 06:46:23 +02:00
|
|
|
* `code` {Integer} The exit code. Defaults to `0`.
|
|
|
|
|
|
|
|
The `process.exit()` method instructs Node.js to terminate the process as
|
|
|
|
quickly as possible with the specified exit `code`. If the `code` is omitted,
|
|
|
|
exit uses either the 'success' code `0` or the value of `process.exitCode` if
|
|
|
|
specified.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
To exit with a 'failure' code:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
process.exit(1);
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-04-27 06:46:23 +02:00
|
|
|
The shell that executed Node.js should see the exit code as `1`.
|
|
|
|
|
|
|
|
It is important to note that calling `process.exit()` will force the process to
|
|
|
|
exit as quickly as possible *even if there are still asynchronous operations
|
|
|
|
pending* that have not yet completed fully, *including* I/O operations to
|
|
|
|
`process.stdout` and `process.stderr`.
|
|
|
|
|
|
|
|
In most situations, it is not actually necessary to call `process.exit()`
|
|
|
|
explicitly. The Node.js process will exit on it's own *if there is no additional
|
|
|
|
work pending* in the event loop. The `process.exitCode` property can be set to
|
|
|
|
tell the process which exit code to use when the process exits gracefully.
|
|
|
|
|
|
|
|
For instance, the following example illustrates a *misuse* of the
|
|
|
|
`process.exit()` method that could lead to data printed to stdout being
|
|
|
|
truncated and lost:
|
|
|
|
|
|
|
|
```js
|
|
|
|
// This is an example of what *not* to do:
|
|
|
|
if (someConditionNotMet()) {
|
|
|
|
printUsageToStdout();
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The reason this is problematic is because writes to `process.stdout` in Node.js
|
|
|
|
are *non-blocking* and may occur over multiple ticks of the Node.js event loop.
|
|
|
|
Calling `process.exit()`, however, forces the process to exit *before* those
|
|
|
|
additional writes to `stdout` can be performed.
|
|
|
|
|
|
|
|
Rather than calling `process.exit()` directly, the code *should* set the
|
|
|
|
`process.exitCode` and allow the process to exit naturally by avoiding
|
|
|
|
scheduling any additional work for the event loop:
|
|
|
|
|
|
|
|
```js
|
|
|
|
// How to properly set the exit code while letting
|
|
|
|
// the process exit gracefully.
|
|
|
|
if (someConditionNotMet()) {
|
|
|
|
printUsageToStdout();
|
|
|
|
process.exitCode = 1;
|
|
|
|
}
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-04-27 06:46:23 +02:00
|
|
|
If it is necessary to terminate the Node.js process due to an error condition,
|
|
|
|
throwing an *uncaught* error and allowing the process to terminate accordingly
|
|
|
|
is safer than calling `process.exit()`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-09-07 01:46:35 +02:00
|
|
|
## process.exitCode
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.8
|
|
|
|
-->
|
2013-09-07 01:46:35 +02:00
|
|
|
|
|
|
|
A number which will be the process exit code, when the process either
|
2015-11-28 00:30:32 +01:00
|
|
|
exits gracefully, or is exited via [`process.exit()`][] without specifying
|
2013-09-07 01:46:35 +02:00
|
|
|
a code.
|
|
|
|
|
2016-04-27 06:46:23 +02:00
|
|
|
Specifying a code to [`process.exit(code)`][`process.exit()`] will override any
|
|
|
|
previous setting of `process.exitCode`.
|
2013-09-07 01:46:35 +02:00
|
|
|
|
|
|
|
|
2015-04-27 18:24:19 +02:00
|
|
|
## process.getegid()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v2.0.0
|
|
|
|
-->
|
2015-04-27 18:24:19 +02:00
|
|
|
|
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
|
|
|
|
|
|
|
Gets the effective group identity of the process. (See getegid(2).)
|
|
|
|
This is the numerical group id, not the group name.
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
if (process.getegid) {
|
|
|
|
console.log(`Current gid: ${process.getegid()}`);
|
|
|
|
}
|
|
|
|
```
|
2015-04-27 18:24:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
## process.geteuid()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v2.0.0
|
|
|
|
-->
|
2015-04-27 18:24:19 +02:00
|
|
|
|
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
|
|
|
|
|
|
|
Gets the effective user identity of the process. (See geteuid(2).)
|
|
|
|
This is the numerical userid, not the username.
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
if (process.geteuid) {
|
|
|
|
console.log(`Current uid: ${process.geteuid()}`);
|
|
|
|
}
|
|
|
|
```
|
2015-04-27 18:24:19 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.getgid()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.31
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-05-08 14:10:07 +02:00
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
2012-05-22 00:07:11 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Gets the group identity of the process. (See getgid(2).)
|
|
|
|
This is the numerical group id, not the group name.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
if (process.getgid) {
|
|
|
|
console.log(`Current gid: ${process.getgid()}`);
|
|
|
|
}
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.getgroups()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.9.4
|
|
|
|
-->
|
2015-04-27 18:24:19 +02:00
|
|
|
|
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Returns an array with the supplementary group IDs. POSIX leaves it unspecified
|
|
|
|
if the effective group ID is included but Node.js ensures it always is.
|
2015-04-27 18:24:19 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.getuid()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.28
|
|
|
|
-->
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2013-05-08 14:10:07 +02:00
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Gets the user identity of the process. (See getuid(2).)
|
|
|
|
This is the numerical userid, not the username.
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
if (process.getuid) {
|
|
|
|
console.log(`Current uid: ${process.getuid()}`);
|
|
|
|
}
|
|
|
|
```
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.hrtime()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.6
|
|
|
|
-->
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Returns the current high-resolution real time in a `[seconds, nanoseconds]`
|
|
|
|
tuple Array. It is relative to an arbitrary time in the past. It is not
|
|
|
|
related to the time of day and therefore not subject to clock drift. The
|
|
|
|
primary use is for measuring performance between intervals.
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
You may pass in the result of a previous call to `process.hrtime()` to get
|
|
|
|
a diff reading, useful for benchmarks and measuring intervals:
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
var time = process.hrtime();
|
|
|
|
// [ 1800216, 25 ]
|
2015-11-05 17:00:46 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
setTimeout(() => {
|
|
|
|
var diff = process.hrtime(time);
|
|
|
|
// [ 1, 552 ]
|
2015-11-05 17:00:46 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
console.log('benchmark took %d nanoseconds', diff[0] * 1e9 + diff[1]);
|
|
|
|
// benchmark took 1000000527 nanoseconds
|
|
|
|
}, 1000);
|
|
|
|
```
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
## process.initgroups(user, extra_group)
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.9.4
|
|
|
|
-->
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2013-05-08 14:10:07 +02:00
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
|
|
Reads /etc/group and initializes the group access list, using all groups of
|
|
|
|
which the user is a member. This is a privileged operation, meaning you need
|
2015-11-28 00:30:32 +01:00
|
|
|
to be root or have the `CAP_SETGID` capability.
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
|
|
`user` is a user name or user ID. `extra_group` is a group name or group ID.
|
|
|
|
|
|
|
|
Some care needs to be taken when dropping privileges. Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log(process.getgroups()); // [ 0 ]
|
|
|
|
process.initgroups('bnoordhuis', 1000); // switch user
|
|
|
|
console.log(process.getgroups()); // [ 27, 30, 46, 1000, 0 ]
|
|
|
|
process.setgid(1000); // drop root gid
|
|
|
|
console.log(process.getgroups()); // [ 27, 30, 46, 1000 ]
|
|
|
|
```
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.kill(pid[, signal])
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.0.6
|
|
|
|
-->
|
2012-12-04 06:36:23 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Send a signal to a process. `pid` is the process id and `signal` is the
|
|
|
|
string describing the signal to send. Signal names are strings like
|
2016-02-18 23:38:21 +01:00
|
|
|
`'SIGINT'` or `'SIGHUP'`. If omitted, the signal will be `'SIGTERM'`.
|
2015-11-14 04:21:49 +01:00
|
|
|
See [Signal Events][] and kill(2) for more information.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Will throw an error if target does not exist, and as a special case, a signal
|
2015-11-05 20:08:34 +01:00
|
|
|
of `0` can be used to test for the existence of a process. Windows platforms
|
|
|
|
will throw an error if the `pid` is used to kill a process group.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Note that even though the name of this function is `process.kill`, it is really
|
|
|
|
just a signal sender, like the `kill` system call. The signal sent may do
|
|
|
|
something other than kill the target process.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
Example of sending a signal to yourself:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
process.on('SIGHUP', () => {
|
|
|
|
console.log('Got SIGHUP signal.');
|
|
|
|
});
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
setTimeout(() => {
|
|
|
|
console.log('Exiting.');
|
|
|
|
process.exit(0);
|
|
|
|
}, 100);
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
process.kill(process.pid, 'SIGHUP');
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-08-13 18:14:34 +02:00
|
|
|
Note: When SIGUSR1 is received by Node.js it starts the debugger, see
|
2015-11-14 04:21:49 +01:00
|
|
|
[Signal Events][].
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.mainModule
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.17
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-14 04:21:49 +01:00
|
|
|
Alternate way to retrieve [`require.main`][]. The difference is that if the main
|
2016-02-18 23:38:21 +01:00
|
|
|
module changes at runtime, [`require.main`][] might still refer to the original main
|
2015-11-14 04:21:49 +01:00
|
|
|
module in modules that were required before the change occurred. Generally it's
|
|
|
|
safe to assume that the two refer to the same module.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-02-18 23:38:21 +01:00
|
|
|
As with [`require.main`][], it will be `undefined` if there was no entry script.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## process.memoryUsage()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.16
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-08-13 18:14:34 +02:00
|
|
|
Returns an object describing the memory usage of the Node.js process
|
2011-08-20 00:26:21 +02:00
|
|
|
measured in bytes.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
console.log(util.inspect(process.memoryUsage()));
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
This will generate:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
{ rss: 4935680,
|
|
|
|
heapTotal: 1826816,
|
|
|
|
heapUsed: 650472 }
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
|
|
|
`heapTotal` and `heapUsed` refer to V8's memory usage.
|
|
|
|
|
|
|
|
|
2015-03-05 22:07:27 +01:00
|
|
|
## process.nextTick(callback[, arg][, ...])
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.26
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-07-14 00:20:27 +02:00
|
|
|
* `callback` {Function}
|
|
|
|
|
|
|
|
Once the current event loop turn runs to completion, call the callback
|
|
|
|
function.
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
This is *not* a simple alias to [`setTimeout(fn, 0)`][], it's much more
|
2013-07-14 00:20:27 +02:00
|
|
|
efficient. It runs before any additional I/O events (including
|
|
|
|
timers) fire in subsequent ticks of the event loop.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log('start');
|
|
|
|
process.nextTick(() => {
|
|
|
|
console.log('nextTick callback');
|
|
|
|
});
|
|
|
|
console.log('scheduled');
|
|
|
|
// Output:
|
|
|
|
// start
|
|
|
|
// scheduled
|
|
|
|
// nextTick callback
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2012-07-14 03:11:38 +02:00
|
|
|
This is important in developing APIs where you want to give the user the
|
|
|
|
chance to assign event handlers after an object has been constructed,
|
|
|
|
but before any I/O has occurred.
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
function MyThing(options) {
|
|
|
|
this.setupOptions(options);
|
2012-07-14 03:11:38 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
process.nextTick(() => {
|
|
|
|
this.startDoingStuff();
|
2016-01-21 17:21:16 +01:00
|
|
|
});
|
2016-01-17 18:39:07 +01:00
|
|
|
}
|
2012-07-14 03:11:38 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
var thing = new MyThing();
|
|
|
|
thing.getReadyForStuff();
|
2012-07-14 03:11:38 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
// thing.startDoingStuff() gets called now, not before.
|
|
|
|
```
|
2012-07-14 03:11:38 +02:00
|
|
|
|
|
|
|
It is very important for APIs to be either 100% synchronous or 100%
|
|
|
|
asynchronous. Consider this example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
// WARNING! DO NOT USE! BAD UNSAFE HAZARD!
|
|
|
|
function maybeSync(arg, cb) {
|
|
|
|
if (arg) {
|
|
|
|
cb();
|
|
|
|
return;
|
|
|
|
}
|
2012-07-14 03:11:38 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
fs.stat('file', cb);
|
|
|
|
}
|
|
|
|
```
|
2012-07-14 03:11:38 +02:00
|
|
|
|
|
|
|
This API is hazardous. If you do this:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2016-01-24 10:15:51 +01:00
|
|
|
maybeSync(true, () => {
|
2016-01-17 18:39:07 +01:00
|
|
|
foo();
|
|
|
|
});
|
|
|
|
bar();
|
|
|
|
```
|
2012-07-14 03:11:38 +02:00
|
|
|
|
|
|
|
then it's not clear whether `foo()` or `bar()` will be called first.
|
|
|
|
|
|
|
|
This approach is much better:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
function definitelyAsync(arg, cb) {
|
|
|
|
if (arg) {
|
|
|
|
process.nextTick(cb);
|
|
|
|
return;
|
|
|
|
}
|
2012-07-14 03:11:38 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
fs.stat('file', cb);
|
|
|
|
}
|
|
|
|
```
|
2012-07-14 03:11:38 +02:00
|
|
|
|
2013-07-14 00:20:27 +02:00
|
|
|
Note: the nextTick queue is completely drained on each pass of the
|
|
|
|
event loop **before** additional I/O is processed. As a result,
|
|
|
|
recursively setting nextTick callbacks will block any I/O from
|
|
|
|
happening, just like a `while(true);` loop.
|
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.pid
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.15
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
The PID of the process.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log(`This process is pid ${process.pid}`);
|
|
|
|
```
|
2011-03-05 00:57:54 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.platform
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.16
|
|
|
|
-->
|
2011-03-05 00:57:54 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
What platform you're running on:
|
|
|
|
`'darwin'`, `'freebsd'`, `'linux'`, `'sunos'` or `'win32'`
|
2012-03-05 17:51:58 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log(`This platform is ${process.platform}`);
|
|
|
|
```
|
2012-03-05 17:51:58 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.release
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v3.0.0
|
|
|
|
-->
|
2012-03-05 17:51:58 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
An Object containing metadata related to the current release, including URLs
|
|
|
|
for the source tarball and headers-only tarball.
|
2012-03-05 17:51:58 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
`process.release` contains the following properties:
|
2012-03-05 17:51:58 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
* `name`: a string with a value that will always be `'node'` for Node.js. For
|
|
|
|
legacy io.js releases, this will be `'io.js'`.
|
2015-11-05 17:00:46 +01:00
|
|
|
* `sourceUrl`: a complete URL pointing to a _.tar.gz_ file containing the
|
|
|
|
source of the current release.
|
|
|
|
* `headersUrl`: a complete URL pointing to a _.tar.gz_ file containing only
|
|
|
|
the header files for the current release. This file is significantly smaller
|
|
|
|
than the full source file and can be used for compiling add-ons against
|
|
|
|
Node.js.
|
|
|
|
* `libUrl`: a complete URL pointing to an _node.lib_ file matching the
|
|
|
|
architecture and version of the current release. This file is used for
|
|
|
|
compiling add-ons against Node.js. _This property is only present on Windows
|
|
|
|
builds of Node.js and will be missing on all other platforms._
|
2012-03-05 17:51:58 +01:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
e.g.
|
2012-03-05 17:51:58 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
{ name: 'node',
|
|
|
|
sourceUrl: 'https://nodejs.org/download/release/v4.0.0/node-v4.0.0.tar.gz',
|
|
|
|
headersUrl: 'https://nodejs.org/download/release/v4.0.0/node-v4.0.0-headers.tar.gz',
|
|
|
|
libUrl: 'https://nodejs.org/download/release/v4.0.0/win-x64/node.lib' }
|
|
|
|
```
|
2012-06-06 21:05:18 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
In custom builds from non-release versions of the source tree, only the
|
|
|
|
`name` property may be present. The additional properties should not be
|
|
|
|
relied upon to exist.
|
2014-06-22 02:09:04 +02:00
|
|
|
|
2016-02-16 21:12:56 +01:00
|
|
|
## process.send(message[, sendHandle[, options]][, callback])
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.9
|
|
|
|
-->
|
2015-06-15 04:06:22 +02:00
|
|
|
|
|
|
|
* `message` {Object}
|
|
|
|
* `sendHandle` {Handle object}
|
2016-02-16 21:12:56 +01:00
|
|
|
* `options` {Object}
|
2016-02-17 17:13:18 +01:00
|
|
|
* `callback` {Function}
|
|
|
|
* Return: {Boolean}
|
2015-06-15 04:06:22 +02:00
|
|
|
|
|
|
|
When Node.js is spawned with an IPC channel attached, it can send messages to its
|
|
|
|
parent process using `process.send()`. Each will be received as a
|
2016-02-18 23:38:21 +01:00
|
|
|
[`'message'`][] event on the parent's [`ChildProcess`][] object.
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2016-03-15 17:12:41 +01:00
|
|
|
*Note: this function uses [`JSON.stringify()`][] internally to serialize the `message`.*
|
|
|
|
|
2015-09-13 17:09:32 +02:00
|
|
|
If Node.js was not spawned with an IPC channel, `process.send()` will be undefined.
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.setegid(id)
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v2.0.0
|
|
|
|
-->
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Sets the effective group identity of the process. (See setegid(2).)
|
2016-02-18 23:38:21 +01:00
|
|
|
This accepts either a numerical ID or a group name string. If a group name
|
2015-11-05 17:00:46 +01:00
|
|
|
is specified, this method blocks while resolving it to a numerical ID.
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
if (process.getegid && process.setegid) {
|
|
|
|
console.log(`Current gid: ${process.getegid()}`);
|
|
|
|
try {
|
|
|
|
process.setegid(501);
|
|
|
|
console.log(`New gid: ${process.getegid()}`);
|
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
console.log(`Failed to set gid: ${err}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.seteuid(id)
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v2.0.0
|
|
|
|
-->
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Sets the effective user identity of the process. (See seteuid(2).)
|
|
|
|
This accepts either a numerical ID or a username string. If a username
|
|
|
|
is specified, this method blocks while resolving it to a numerical ID.
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
if (process.geteuid && process.seteuid) {
|
|
|
|
console.log(`Current uid: ${process.geteuid()}`);
|
|
|
|
try {
|
|
|
|
process.seteuid(501);
|
|
|
|
console.log(`New uid: ${process.geteuid()}`);
|
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
console.log(`Failed to set uid: ${err}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
## process.setgid(id)
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.31
|
|
|
|
-->
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
2015-06-15 04:06:22 +02:00
|
|
|
|
2015-11-05 17:00:46 +01:00
|
|
|
Sets the group identity of the process. (See setgid(2).) This accepts either
|
2016-02-18 23:38:21 +01:00
|
|
|
a numerical ID or a group name string. If a group name is specified, this method
|
2015-11-05 17:00:46 +01:00
|
|
|
blocks while resolving it to a numerical ID.
|
2014-06-22 02:09:04 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
if (process.getgid && process.setgid) {
|
|
|
|
console.log(`Current gid: ${process.getgid()}`);
|
|
|
|
try {
|
|
|
|
process.setgid(501);
|
|
|
|
console.log(`New gid: ${process.getgid()}`);
|
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
console.log(`Failed to set gid: ${err}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
## process.setgroups(groups)
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.9.4
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
|
|
|
|
|
|
|
Sets the supplementary group IDs. This is a privileged operation, meaning you
|
2015-11-28 00:30:32 +01:00
|
|
|
need to be root or have the `CAP_SETGID` capability.
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
The list can contain group IDs, group names or both.
|
|
|
|
|
|
|
|
## process.setuid(id)
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.28
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
Note: this function is only available on POSIX platforms (i.e. not Windows,
|
|
|
|
Android)
|
|
|
|
|
|
|
|
Sets the user identity of the process. (See setuid(2).) This accepts either
|
|
|
|
a numerical ID or a username string. If a username is specified, this method
|
|
|
|
blocks while resolving it to a numerical ID.
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
if (process.getuid && process.setuid) {
|
|
|
|
console.log(`Current uid: ${process.getuid()}`);
|
|
|
|
try {
|
|
|
|
process.setuid(501);
|
|
|
|
console.log(`New uid: ${process.getuid()}`);
|
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
console.log(`Failed to set uid: ${err}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
## process.stderr
|
|
|
|
|
|
|
|
A writable stream to stderr (on fd `2`).
|
|
|
|
|
|
|
|
`process.stderr` and `process.stdout` are unlike other streams in Node.js in
|
2016-02-18 23:38:21 +01:00
|
|
|
that they cannot be closed ([`end()`][] will throw), they never emit the [`'finish'`][]
|
2015-11-05 17:00:46 +01:00
|
|
|
event and that writes can block when output is redirected to a file (although
|
|
|
|
disks are fast and operating systems normally employ write-back caching so it
|
|
|
|
should be a very rare occurrence indeed.)
|
|
|
|
|
|
|
|
## process.stdin
|
|
|
|
|
|
|
|
A `Readable Stream` for stdin (on fd `0`).
|
|
|
|
|
|
|
|
Example of opening standard input and listening for both events:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
process.stdin.setEncoding('utf8');
|
2015-11-05 17:00:46 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
process.stdin.on('readable', () => {
|
|
|
|
var chunk = process.stdin.read();
|
|
|
|
if (chunk !== null) {
|
|
|
|
process.stdout.write(`data: ${chunk}`);
|
|
|
|
}
|
|
|
|
});
|
2015-11-05 17:00:46 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
process.stdin.on('end', () => {
|
|
|
|
process.stdout.write('end');
|
|
|
|
});
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
As a Stream, `process.stdin` can also be used in "old" mode that is compatible
|
|
|
|
with scripts written for node.js prior to v0.10.
|
2015-11-14 04:21:49 +01:00
|
|
|
For more information see [Stream compatibility][].
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
In "old" Streams mode the stdin stream is paused by default, so one
|
|
|
|
must call `process.stdin.resume()` to read from it. Note also that calling
|
|
|
|
`process.stdin.resume()` itself would switch stream to "old" mode.
|
|
|
|
|
|
|
|
If you are starting a new project you should prefer a more recent "new" Streams
|
|
|
|
mode over "old" one.
|
|
|
|
|
|
|
|
## process.stdout
|
|
|
|
|
|
|
|
A `Writable Stream` to `stdout` (on fd `1`).
|
|
|
|
|
|
|
|
For example, a `console.log` equivalent could look like this:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2016-01-24 10:15:51 +01:00
|
|
|
console.log = (msg) => {
|
2016-01-17 18:39:07 +01:00
|
|
|
process.stdout.write(`${msg}\n`);
|
|
|
|
};
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
`process.stderr` and `process.stdout` are unlike other streams in Node.js in
|
2016-02-18 23:38:21 +01:00
|
|
|
that they cannot be closed ([`end()`][] will throw), they never emit the [`'finish'`][]
|
2015-11-05 17:00:46 +01:00
|
|
|
event and that writes can block when output is redirected to a file (although
|
|
|
|
disks are fast and operating systems normally employ write-back caching so it
|
|
|
|
should be a very rare occurrence indeed.)
|
|
|
|
|
|
|
|
To check if Node.js is being run in a TTY context, read the `isTTY` property
|
|
|
|
on `process.stderr`, `process.stdout`, or `process.stdin`:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
$ node -p "Boolean(process.stdin.isTTY)"
|
|
|
|
true
|
|
|
|
$ echo "foo" | node -p "Boolean(process.stdin.isTTY)"
|
|
|
|
false
|
2015-11-05 17:00:46 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
$ node -p "Boolean(process.stdout.isTTY)"
|
|
|
|
true
|
|
|
|
$ node -p "Boolean(process.stdout.isTTY)" | cat
|
|
|
|
false
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
2015-11-14 04:21:49 +01:00
|
|
|
See [the tty docs][] for more information.
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
## process.title
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.104
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
2016-01-05 01:15:10 +01:00
|
|
|
Getter/setter to set what is displayed in `ps`.
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
When used as a setter, the maximum length is platform-specific and probably
|
|
|
|
short.
|
|
|
|
|
|
|
|
On Linux and OS X, it's limited to the size of the binary name plus the
|
|
|
|
length of the command line arguments because it overwrites the argv memory.
|
|
|
|
|
|
|
|
v0.8 allowed for longer process title strings by also overwriting the environ
|
|
|
|
memory but that was potentially insecure/confusing in some (rather obscure)
|
|
|
|
cases.
|
|
|
|
|
|
|
|
## process.umask([mask])
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.19
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
Sets or reads the process's file mode creation mask. Child processes inherit
|
|
|
|
the mask from the parent process. Returns the old mask if `mask` argument is
|
|
|
|
given, otherwise returns the current mask.
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const newmask = 0o022;
|
|
|
|
const oldmask = process.umask(newmask);
|
|
|
|
console.log(
|
|
|
|
`Changed umask from ${oldmask.toString(8)} to ${newmask.toString(8)}`
|
|
|
|
);
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
## process.uptime()
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.0
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
Number of seconds Node.js has been running.
|
|
|
|
|
|
|
|
## process.version
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.3
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
A compiled-in property that exposes `NODE_VERSION`.
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log(`Version: ${process.version}`);
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
## process.versions
|
2016-05-05 06:57:59 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.2.0
|
|
|
|
-->
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
A property exposing version strings of Node.js and its dependencies.
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
console.log(process.versions);
|
|
|
|
```
|
2015-11-05 17:00:46 +01:00
|
|
|
|
|
|
|
Will print something like:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
{ http_parser: '2.3.0',
|
|
|
|
node: '1.1.1',
|
|
|
|
v8: '4.1.0.14',
|
|
|
|
uv: '1.3.0',
|
|
|
|
zlib: '1.2.8',
|
|
|
|
ares: '1.10.0-DEV',
|
|
|
|
modules: '43',
|
|
|
|
icu: '55.1',
|
|
|
|
openssl: '1.0.1k' }
|
|
|
|
```
|
2014-06-22 02:09:04 +02:00
|
|
|
|
2016-02-18 23:38:21 +01:00
|
|
|
[`'finish'`]: stream.html#stream_event_finish
|
2015-11-28 00:30:32 +01:00
|
|
|
[`'message'`]: child_process.html#child_process_event_message
|
2016-02-18 23:38:21 +01:00
|
|
|
[`'rejectionHandled'`]: #process_event_rejectionhandled
|
|
|
|
[`'uncaughtException'`]: #process_event_uncaughtexception
|
2015-11-28 00:30:32 +01:00
|
|
|
[`ChildProcess.disconnect()`]: child_process.html#child_process_child_disconnect
|
2016-02-18 23:38:21 +01:00
|
|
|
[`ChildProcess.kill()`]: child_process.html#child_process_child_kill_signal
|
2016-04-13 12:30:14 +02:00
|
|
|
[`ChildProcess.send()`]: child_process.html#child_process_child_send_message_sendhandle_options_callback
|
2016-02-18 23:38:21 +01:00
|
|
|
[`ChildProcess`]: child_process.html#child_process_class_childprocess
|
|
|
|
[`end()`]: stream.html#stream_writable_end_chunk_encoding_callback
|
2015-11-28 00:30:32 +01:00
|
|
|
[`Error`]: errors.html#errors_class_error
|
2016-04-13 12:30:14 +02:00
|
|
|
[`EventEmitter`]: events.html#events_class_eventemitter
|
2016-02-18 23:38:21 +01:00
|
|
|
[`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
|
2015-11-28 00:30:32 +01:00
|
|
|
[`net.Server`]: net.html#net_class_net_server
|
|
|
|
[`net.Socket`]: net.html#net_class_net_socket
|
2016-02-18 23:38:21 +01:00
|
|
|
[`process.argv`]: #process_process_argv
|
2015-11-28 00:30:32 +01:00
|
|
|
[`process.exit()`]: #process_process_exit_code
|
2016-02-18 23:38:21 +01:00
|
|
|
[`process.kill()`]: #process_process_kill_pid_signal
|
|
|
|
[`promise.catch()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/catch
|
2015-11-14 04:21:49 +01:00
|
|
|
[`require.main`]: modules.html#modules_accessing_the_main_module
|
2015-11-28 00:30:32 +01:00
|
|
|
[`setTimeout(fn, 0)`]: timers.html#timers_settimeout_callback_delay_arg
|
2016-02-18 23:38:21 +01:00
|
|
|
[child_process `'disconnect'` event]: child_process.html#child_process_event_disconnect
|
2016-04-22 21:27:35 +02:00
|
|
|
[process_emit_warning]: #process_process_emitwarning_warning_name_ctor
|
2016-02-18 23:38:21 +01:00
|
|
|
[process_warning]: #process_event_warning
|
2015-11-28 00:30:32 +01:00
|
|
|
[Signal Events]: #process_signal_events
|
2015-11-14 04:21:49 +01:00
|
|
|
[Stream compatibility]: stream.html#stream_compatibility_with_older_node_js_versions
|
|
|
|
[the tty docs]: tty.html#tty_tty
|