2017-02-08 01:56:07 +02:00
|
|
|
|
# Process
|
2012-02-27 11:09:34 -08:00
|
|
|
|
|
2017-01-22 19:16:21 -08:00
|
|
|
|
<!-- introduced_in=v0.10.0 -->
|
2021-09-19 17:18:42 -07:00
|
|
|
|
|
2012-02-27 11:09:34 -08:00
|
|
|
|
<!-- type=global -->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2020-06-22 13:56:08 -04:00
|
|
|
|
<!-- source_link=lib/process.js -->
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
The `process` object provides information about, and control over, the current
|
2022-03-31 20:14:44 -07:00
|
|
|
|
Node.js process.
|
2019-03-19 17:45:00 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2019-03-19 17:45:00 -07:00
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
|
## Process events
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
|
|
|
|
The `process` object is an instance of [`EventEmitter`][].
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'beforeExit'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.11.12
|
|
|
|
|
-->
|
2013-09-06 17:47:56 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `'beforeExit'` event is emitted when Node.js empties its event loop and has
|
|
|
|
|
no additional work to schedule. Normally, the Node.js process will exit when
|
|
|
|
|
there is no work scheduled, but a listener registered on the `'beforeExit'`
|
|
|
|
|
event can make asynchronous calls, and thereby cause the Node.js process to
|
2016-02-17 11:10:46 -08:00
|
|
|
|
continue.
|
2013-09-06 17:47:56 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The listener callback function is invoked with the value of
|
|
|
|
|
[`process.exitCode`][] passed as the only argument.
|
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
The `'beforeExit'` event is _not_ emitted for conditions causing explicit
|
2016-05-27 12:24:05 -07:00
|
|
|
|
termination, such as calling [`process.exit()`][] or uncaught exceptions.
|
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
The `'beforeExit'` should _not_ be used as an alternative to the `'exit'` event
|
2016-05-27 12:24:05 -07:00
|
|
|
|
unless the intention is to schedule additional work.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('beforeExit', (code) => {
|
|
|
|
|
console.log('Process beforeExit event with code: ', code);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
process.on('exit', (code) => {
|
|
|
|
|
console.log('Process exit event with code: ', code);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
console.log('This message is displayed first.');
|
|
|
|
|
|
|
|
|
|
// Prints:
|
|
|
|
|
// This message is displayed first.
|
|
|
|
|
// Process beforeExit event with code: 0
|
|
|
|
|
// Process exit event with code: 0
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2019-06-25 17:08:02 -05:00
|
|
|
|
process.on('beforeExit', (code) => {
|
|
|
|
|
console.log('Process beforeExit event with code: ', code);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
process.on('exit', (code) => {
|
|
|
|
|
console.log('Process exit event with code: ', code);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
console.log('This message is displayed first.');
|
|
|
|
|
|
|
|
|
|
// Prints:
|
|
|
|
|
// This message is displayed first.
|
|
|
|
|
// Process beforeExit event with code: 0
|
|
|
|
|
// Process exit event with code: 0
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'disconnect'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.7.7
|
|
|
|
|
-->
|
2016-02-19 01:38:21 +03:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
If the Node.js process is spawned with an IPC channel (see the [Child Process][]
|
|
|
|
|
and [Cluster][] documentation), the `'disconnect'` event will be emitted when
|
|
|
|
|
the IPC channel is closed.
|
2016-02-19 01:38:21 +03:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'exit'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.7
|
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2018-04-26 02:15:59 +02:00
|
|
|
|
* `code` {integer}
|
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `'exit'` event is emitted when the Node.js process is about to exit as a
|
|
|
|
|
result of either:
|
|
|
|
|
|
|
|
|
|
* The `process.exit()` method being called explicitly;
|
|
|
|
|
* The Node.js event loop no longer having any additional work to perform.
|
|
|
|
|
|
|
|
|
|
There is no way to prevent the exiting of the event loop at this point, and once
|
|
|
|
|
all `'exit'` listeners have finished running the Node.js process will terminate.
|
|
|
|
|
|
|
|
|
|
The listener callback function is invoked with the exit code specified either
|
|
|
|
|
by the [`process.exitCode`][] property, or the `exitCode` argument passed to the
|
2019-10-02 00:31:57 -04:00
|
|
|
|
[`process.exit()`][] method.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('exit', (code) => {
|
|
|
|
|
console.log(`About to exit with code: ${code}`);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
process.on('exit', (code) => {
|
|
|
|
|
console.log(`About to exit with code: ${code}`);
|
|
|
|
|
});
|
|
|
|
|
```
|
2015-09-14 10:28:02 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
Listener functions **must** only perform **synchronous** operations. The Node.js
|
|
|
|
|
process will exit immediately after calling the `'exit'` event listeners
|
|
|
|
|
causing any additional work still queued in the event loop to be abandoned.
|
|
|
|
|
In the following example, for instance, the timeout will never occur:
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('exit', (code) => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
console.log('This will not run');
|
|
|
|
|
}, 0);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
process.on('exit', (code) => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
console.log('This will not run');
|
|
|
|
|
}, 0);
|
|
|
|
|
});
|
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'message'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.10
|
|
|
|
|
-->
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2018-04-29 18:27:17 +03:00
|
|
|
|
* `message` { Object | boolean | number | string | null } a parsed JSON object
|
|
|
|
|
or a serializable primitive value.
|
2018-04-26 02:15:59 +02:00
|
|
|
|
* `sendHandle` {net.Server|net.Socket} a [`net.Server`][] or [`net.Socket`][]
|
|
|
|
|
object, or undefined.
|
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
If the Node.js process is spawned with an IPC channel (see the [Child Process][]
|
|
|
|
|
and [Cluster][] documentation), the `'message'` event is emitted whenever a
|
|
|
|
|
message sent by a parent process using [`childprocess.send()`][] is received by
|
|
|
|
|
the child process.
|
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
The message goes through serialization and parsing. The resulting message might
|
|
|
|
|
not be the same as what is originally sent.
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2019-10-29 15:15:36 +01:00
|
|
|
|
If the `serialization` option was set to `advanced` used when spawning the
|
|
|
|
|
process, the `message` argument can contain data that JSON is not able
|
|
|
|
|
to represent.
|
2020-06-14 14:49:34 -07:00
|
|
|
|
See [Advanced serialization for `child_process`][] for more details.
|
2019-10-29 15:15:36 +01:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'multipleResolves'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2018-08-09 21:06:32 +02:00
|
|
|
|
<!-- YAML
|
2018-10-07 14:09:45 +02:00
|
|
|
|
added: v10.12.0
|
2022-04-23 21:03:46 -04:00
|
|
|
|
deprecated:
|
|
|
|
|
- v17.6.0
|
|
|
|
|
- v16.15.0
|
2018-08-09 21:06:32 +02:00
|
|
|
|
-->
|
|
|
|
|
|
2022-02-08 16:24:59 +02:00
|
|
|
|
> Stability: 0 - Deprecated
|
|
|
|
|
|
2019-06-19 22:48:45 -04:00
|
|
|
|
* `type` {string} The resolution type. One of `'resolve'` or `'reject'`.
|
2018-08-09 21:06:32 +02:00
|
|
|
|
* `promise` {Promise} The promise that resolved or rejected more than once.
|
|
|
|
|
* `value` {any} The value with which the promise was either resolved or
|
|
|
|
|
rejected after the original resolve.
|
|
|
|
|
|
|
|
|
|
The `'multipleResolves'` event is emitted whenever a `Promise` has been either:
|
|
|
|
|
|
|
|
|
|
* Resolved more than once.
|
|
|
|
|
* Rejected more than once.
|
|
|
|
|
* Rejected after resolve.
|
|
|
|
|
* Resolved after reject.
|
|
|
|
|
|
2019-06-19 22:48:45 -04:00
|
|
|
|
This is useful for tracking potential errors in an application while using the
|
|
|
|
|
`Promise` constructor, as multiple resolutions are silently swallowed. However,
|
|
|
|
|
the occurrence of this event does not necessarily indicate an error. For
|
|
|
|
|
example, [`Promise.race()`][] can trigger a `'multipleResolves'` event.
|
2018-08-09 21:06:32 +02:00
|
|
|
|
|
2022-02-08 16:24:59 +02:00
|
|
|
|
Because of the unreliability of the event in cases like the
|
|
|
|
|
[`Promise.race()`][] example above it has been deprecated.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('multipleResolves', (type, promise, reason) => {
|
|
|
|
|
console.error(type, promise, reason);
|
|
|
|
|
setImmediate(() => process.exit(1));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
|
try {
|
|
|
|
|
return await new Promise((resolve, reject) => {
|
|
|
|
|
resolve('First call');
|
|
|
|
|
resolve('Swallowed resolve');
|
|
|
|
|
reject(new Error('Swallowed reject'));
|
|
|
|
|
});
|
|
|
|
|
} catch {
|
|
|
|
|
throw new Error('Failed');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main().then(console.log);
|
|
|
|
|
// resolve: Promise { 'First call' } 'Swallowed resolve'
|
|
|
|
|
// reject: Promise { 'First call' } Error: Swallowed reject
|
|
|
|
|
// at Promise (*)
|
|
|
|
|
// at new Promise (<anonymous>)
|
|
|
|
|
// at main (*)
|
|
|
|
|
// First call
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2018-08-09 21:06:32 +02:00
|
|
|
|
process.on('multipleResolves', (type, promise, reason) => {
|
|
|
|
|
console.error(type, promise, reason);
|
|
|
|
|
setImmediate(() => process.exit(1));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
|
try {
|
|
|
|
|
return await new Promise((resolve, reject) => {
|
|
|
|
|
resolve('First call');
|
|
|
|
|
resolve('Swallowed resolve');
|
|
|
|
|
reject(new Error('Swallowed reject'));
|
|
|
|
|
});
|
|
|
|
|
} catch {
|
|
|
|
|
throw new Error('Failed');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main().then(console.log);
|
|
|
|
|
// resolve: Promise { 'First call' } 'Swallowed resolve'
|
|
|
|
|
// reject: Promise { 'First call' } Error: Swallowed reject
|
|
|
|
|
// at Promise (*)
|
|
|
|
|
// at new Promise (<anonymous>)
|
|
|
|
|
// at main (*)
|
|
|
|
|
// First call
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'rejectionHandled'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v1.4.1
|
|
|
|
|
-->
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2018-04-26 02:15:59 +02:00
|
|
|
|
* `promise` {Promise} The late handled promise.
|
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `'rejectionHandled'` event is emitted whenever a `Promise` has been rejected
|
|
|
|
|
and an error handler was attached to it (using [`promise.catch()`][], for
|
|
|
|
|
example) later than one turn of the Node.js event loop.
|
|
|
|
|
|
|
|
|
|
The `Promise` object would have previously been emitted in an
|
|
|
|
|
`'unhandledRejection'` event, but during the course of processing gained a
|
|
|
|
|
rejection handler.
|
2013-10-25 14:05:39 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07: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`
|
2020-03-03 21:23:59 -08:00
|
|
|
|
rejection can be handled at a future point in time, possibly much later than
|
2016-05-27 12:24:05 -07:00
|
|
|
|
the event loop turn it takes for the `'unhandledRejection'` event to be emitted.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
|
|
|
|
Another way of stating this is that, unlike in synchronous code where there is
|
2016-05-27 12:24:05 -07:00
|
|
|
|
an ever-growing list of unhandled exceptions, with Promises there can be a
|
|
|
|
|
growing-and-shrinking list of unhandled rejections.
|
|
|
|
|
|
|
|
|
|
In synchronous code, the `'uncaughtException'` event is emitted when the list of
|
|
|
|
|
unhandled exceptions grows.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
In asynchronous code, the `'unhandledRejection'` event is emitted when the list
|
|
|
|
|
of unhandled rejections grows, and the `'rejectionHandled'` event is emitted
|
|
|
|
|
when the list of unhandled rejections shrinks.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const unhandledRejections = new Map();
|
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
|
|
|
unhandledRejections.set(promise, reason);
|
|
|
|
|
});
|
|
|
|
|
process.on('rejectionHandled', (promise) => {
|
|
|
|
|
unhandledRejections.delete(promise);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
const unhandledRejections = new Map();
|
2018-04-26 02:15:59 +02:00
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
|
|
|
unhandledRejections.set(promise, reason);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
});
|
2018-04-26 02:15:59 +02:00
|
|
|
|
process.on('rejectionHandled', (promise) => {
|
|
|
|
|
unhandledRejections.delete(promise);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
});
|
|
|
|
|
```
|
2013-10-25 14:05:39 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
In this example, the `unhandledRejections` `Map` will grow and shrink over time,
|
|
|
|
|
reflecting rejections that start unhandled and then become handled. It is
|
|
|
|
|
possible to record such errors in an error log, either periodically (which is
|
|
|
|
|
likely best for long-running application) or upon process exit (which is likely
|
|
|
|
|
most convenient for scripts).
|
2013-10-25 14:05:39 -07:00
|
|
|
|
|
2024-07-09 09:16:04 +02:00
|
|
|
|
### Event: `'workerMessage'`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2025-03-06 13:18:40 +01:00
|
|
|
|
added:
|
|
|
|
|
- v22.5.0
|
|
|
|
|
- v20.19.0
|
2024-07-09 09:16:04 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* `value` {any} A value transmitted using [`postMessageToThread()`][].
|
|
|
|
|
* `source` {number} The transmitting worker thread ID or `0` for the main thread.
|
|
|
|
|
|
|
|
|
|
The `'workerMessage'` event is emitted for any incoming message send by the other
|
|
|
|
|
party by using [`postMessageToThread()`][].
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'uncaughtException'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.18
|
2019-03-11 20:46:43 +01:00
|
|
|
|
changes:
|
2020-04-24 18:43:06 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v12.0.0
|
|
|
|
|
- v10.17.0
|
2019-03-11 20:46:43 +01:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/26599
|
|
|
|
|
description: Added the `origin` argument.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2019-03-11 20:46:43 +01:00
|
|
|
|
* `err` {Error} The uncaught exception.
|
|
|
|
|
* `origin` {string} Indicates if the exception originates from an unhandled
|
2022-02-17 09:59:41 -05:00
|
|
|
|
rejection or from a synchronous error. Can either be `'uncaughtException'` or
|
2022-07-07 02:51:53 -04:00
|
|
|
|
`'unhandledRejection'`. The latter is used when an exception happens in a
|
2022-01-09 12:42:38 +01:00
|
|
|
|
`Promise` based async context (or if a `Promise` is rejected) and
|
|
|
|
|
[`--unhandled-rejections`][] flag set to `strict` or `throw` (which is the
|
|
|
|
|
default) and the rejection is not handled, or when a rejection happens during
|
|
|
|
|
the command line entry point's ES module static loading phase.
|
2019-03-11 20:46:43 +01:00
|
|
|
|
|
2016-04-25 15:48:50 -04:00
|
|
|
|
The `'uncaughtException'` event is emitted when an uncaught JavaScript
|
|
|
|
|
exception bubbles all the way back to the event loop. By default, Node.js
|
2018-07-10 18:44:16 +03:00
|
|
|
|
handles such exceptions by printing the stack trace to `stderr` and exiting
|
|
|
|
|
with code 1, overriding any previously set [`process.exitCode`][].
|
2016-04-25 15:48:50 -04:00
|
|
|
|
Adding a handler for the `'uncaughtException'` event overrides this default
|
2018-10-08 19:48:50 -07:00
|
|
|
|
behavior. Alternatively, change the [`process.exitCode`][] in the
|
|
|
|
|
`'uncaughtException'` handler which will result in the process exiting with the
|
|
|
|
|
provided exit code. Otherwise, in the presence of such handler the process will
|
2018-07-10 18:44:16 +03:00
|
|
|
|
exit with 0.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2024-02-03 09:36:37 -08:00
|
|
|
|
import fs from 'node:fs';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('uncaughtException', (err, origin) => {
|
|
|
|
|
fs.writeSync(
|
|
|
|
|
process.stderr.fd,
|
|
|
|
|
`Caught exception: ${err}\n` +
|
2024-02-03 09:36:37 -08:00
|
|
|
|
`Exception origin: ${origin}\n`,
|
2021-06-15 10:09:29 -07:00
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
console.log('This will still run.');
|
|
|
|
|
}, 500);
|
|
|
|
|
|
|
|
|
|
// Intentionally cause an exception, but don't catch it.
|
|
|
|
|
nonexistentFunc();
|
|
|
|
|
console.log('This will not run.');
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2024-02-03 09:36:37 -08:00
|
|
|
|
const fs = require('node:fs');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2019-03-11 20:46:43 +01:00
|
|
|
|
process.on('uncaughtException', (err, origin) => {
|
|
|
|
|
fs.writeSync(
|
|
|
|
|
process.stderr.fd,
|
|
|
|
|
`Caught exception: ${err}\n` +
|
2024-02-03 09:36:37 -08:00
|
|
|
|
`Exception origin: ${origin}\n`,
|
2019-03-11 20:46:43 +01:00
|
|
|
|
);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
});
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
console.log('This will still run.');
|
|
|
|
|
}, 500);
|
2010-10-28 23:18:16 +11: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 23:18:16 +11:00
|
|
|
|
|
2020-01-08 10:22:00 +01:00
|
|
|
|
It is possible to monitor `'uncaughtException'` events without overriding the
|
|
|
|
|
default behavior to exit the process by installing a
|
|
|
|
|
`'uncaughtExceptionMonitor'` listener.
|
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
#### Warning: Using `'uncaughtException'` correctly
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2019-06-20 13:39:01 -06:00
|
|
|
|
`'uncaughtException'` is a crude mechanism for exception handling
|
2021-10-10 21:55:04 -07:00
|
|
|
|
intended to be used only as a last resort. The event _should not_ be used as
|
2016-02-17 11:10:46 -08:00
|
|
|
|
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 10:30:30 -08:00
|
|
|
|
Exceptions thrown from within the event handler will not be caught. Instead the
|
2016-06-28 16:58:58 -07:00
|
|
|
|
process will exit with a non-zero exit code and the stack trace will be printed.
|
2016-02-10 10:30:30 -08:00
|
|
|
|
This is to avoid infinite recursion.
|
|
|
|
|
|
2016-02-17 11:10:46 -08:00
|
|
|
|
Attempting to resume normally after an uncaught exception can be similar to
|
2019-10-23 21:28:42 -07:00
|
|
|
|
pulling out the power cord when upgrading a computer. Nine out of ten
|
|
|
|
|
times, nothing happens. But the tenth time, the system becomes corrupted.
|
2012-07-18 02:13:55 +02:00
|
|
|
|
|
2016-02-17 11:10:46 -08:00
|
|
|
|
The correct use of `'uncaughtException'` is to perform synchronous cleanup
|
|
|
|
|
of allocated resources (e.g. file descriptors, handles, etc) before shutting
|
2016-04-25 15:48:50 -04:00
|
|
|
|
down the process. **It is not safe to resume normal operation after
|
|
|
|
|
`'uncaughtException'`.**
|
|
|
|
|
|
2018-02-12 02:31:55 -05:00
|
|
|
|
To restart a crashed application in a more reliable way, whether
|
2018-04-09 19:30:22 +03:00
|
|
|
|
`'uncaughtException'` is emitted or not, an external monitor should be employed
|
2018-02-12 02:31:55 -05:00
|
|
|
|
in a separate process to detect application failures and recover or restart as
|
|
|
|
|
needed.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2020-01-08 10:22:00 +01:00
|
|
|
|
### Event: `'uncaughtExceptionMonitor'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2020-01-08 10:22:00 +01:00
|
|
|
|
<!-- YAML
|
2020-05-01 14:43:14 +02:00
|
|
|
|
added:
|
|
|
|
|
- v13.7.0
|
|
|
|
|
- v12.17.0
|
2020-01-08 10:22:00 +01:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* `err` {Error} The uncaught exception.
|
|
|
|
|
* `origin` {string} Indicates if the exception originates from an unhandled
|
|
|
|
|
rejection or from synchronous errors. Can either be `'uncaughtException'` or
|
2022-07-07 02:51:53 -04:00
|
|
|
|
`'unhandledRejection'`. The latter is used when an exception happens in a
|
2022-01-09 12:42:38 +01:00
|
|
|
|
`Promise` based async context (or if a `Promise` is rejected) and
|
|
|
|
|
[`--unhandled-rejections`][] flag set to `strict` or `throw` (which is the
|
|
|
|
|
default) and the rejection is not handled, or when a rejection happens during
|
|
|
|
|
the command line entry point's ES module static loading phase.
|
2020-01-08 10:22:00 +01:00
|
|
|
|
|
|
|
|
|
The `'uncaughtExceptionMonitor'` event is emitted before an
|
|
|
|
|
`'uncaughtException'` event is emitted or a hook installed via
|
|
|
|
|
[`process.setUncaughtExceptionCaptureCallback()`][] is called.
|
|
|
|
|
|
|
|
|
|
Installing an `'uncaughtExceptionMonitor'` listener does not change the behavior
|
|
|
|
|
once an `'uncaughtException'` event is emitted. The process will
|
|
|
|
|
still crash if no `'uncaughtException'` listener is installed.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('uncaughtExceptionMonitor', (err, origin) => {
|
|
|
|
|
MyMonitoringTool.logSync(err, origin);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Intentionally cause an exception, but don't catch it.
|
|
|
|
|
nonexistentFunc();
|
|
|
|
|
// Still crashes Node.js
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2020-01-08 10:22:00 +01:00
|
|
|
|
process.on('uncaughtExceptionMonitor', (err, origin) => {
|
|
|
|
|
MyMonitoringTool.logSync(err, origin);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Intentionally cause an exception, but don't catch it.
|
|
|
|
|
nonexistentFunc();
|
|
|
|
|
// Still crashes Node.js
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'unhandledRejection'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v1.4.1
|
2017-02-21 23:38:47 +01:00
|
|
|
|
changes:
|
|
|
|
|
- version: v7.0.0
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/8217
|
2018-06-04 11:58:47 -07:00
|
|
|
|
description: Not handling `Promise` rejections is deprecated.
|
2017-02-21 23:38:47 +01:00
|
|
|
|
- version: v6.6.0
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/8223
|
2018-04-29 20:46:41 +03:00
|
|
|
|
description: Unhandled `Promise` rejections will now emit
|
2017-02-21 23:38:47 +01:00
|
|
|
|
a process warning.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2015-02-25 02:44:10 +02:00
|
|
|
|
|
2019-03-11 20:46:43 +01:00
|
|
|
|
* `reason` {Error|any} The object with which the promise was rejected
|
|
|
|
|
(typically an [`Error`][] object).
|
|
|
|
|
* `promise` {Promise} The rejected promise.
|
|
|
|
|
|
2018-03-31 12:17:49 +03:00
|
|
|
|
The `'unhandledRejection'` event is emitted whenever a `Promise` is rejected and
|
2016-04-25 15:48:50 -04:00
|
|
|
|
no error handler is attached to the promise within a turn of the event loop.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
When programming with Promises, exceptions are encapsulated as "rejected
|
|
|
|
|
promises". Rejections can be caught and handled using [`promise.catch()`][] and
|
|
|
|
|
are propagated through a `Promise` chain. The `'unhandledRejection'` event is
|
2016-04-25 15:48:50 -04:00
|
|
|
|
useful for detecting and keeping track of promises that were rejected whose
|
2016-05-27 12:24:05 -07:00
|
|
|
|
rejections have not yet been handled.
|
2015-02-25 02:44:10 +02:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
|
|
|
console.log('Unhandled Rejection at:', promise, 'reason:', reason);
|
|
|
|
|
// Application specific logging, throwing an error, or other logic here
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
somePromise.then((res) => {
|
|
|
|
|
return reportToUser(JSON.pasre(res)); // Note the typo (`pasre`)
|
|
|
|
|
}); // No `.catch()` or `.then()`
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2019-03-11 20:46:43 +01:00
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
|
|
|
console.log('Unhandled Rejection at:', promise, 'reason:', reason);
|
2018-12-03 17:15:45 +01:00
|
|
|
|
// Application specific logging, throwing an error, or other logic here
|
2016-01-17 18:39:07 +01:00
|
|
|
|
});
|
2015-02-25 02:44:10 +02:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
somePromise.then((res) => {
|
2019-03-22 03:44:26 +01:00
|
|
|
|
return reportToUser(JSON.pasre(res)); // Note the typo (`pasre`)
|
|
|
|
|
}); // No `.catch()` or `.then()`
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2015-02-25 02:44:10 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The following will also trigger the `'unhandledRejection'` event to be
|
|
|
|
|
emitted:
|
2015-02-26 18:17:15 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
function SomeResource() {
|
|
|
|
|
// Initially set the loaded status to a rejected promise
|
|
|
|
|
this.loaded = Promise.reject(new Error('Resource not yet loaded!'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const resource = new SomeResource();
|
|
|
|
|
// no .catch or .then on resource.loaded for at least a turn
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
function SomeResource() {
|
|
|
|
|
// Initially set the loaded status to a rejected promise
|
|
|
|
|
this.loaded = Promise.reject(new Error('Resource not yet loaded!'));
|
|
|
|
|
}
|
2015-02-26 18:17:15 -05:00
|
|
|
|
|
2017-04-13 04:31:39 +03:00
|
|
|
|
const resource = new SomeResource();
|
2016-01-17 18:39:07 +01:00
|
|
|
|
// no .catch or .then on resource.loaded for at least a turn
|
|
|
|
|
```
|
2015-02-26 18:17:15 -05:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
In this example case, it is possible to track the rejection as a developer error
|
|
|
|
|
as would typically be the case for other `'unhandledRejection'` events. To
|
|
|
|
|
address such failures, a non-operational
|
|
|
|
|
[`.catch(() => { })`][`promise.catch()`] handler may be attached to
|
|
|
|
|
`resource.loaded`, which would prevent the `'unhandledRejection'` event from
|
2019-03-11 20:46:43 +01:00
|
|
|
|
being emitted.
|
2015-02-26 18:17:15 -05:00
|
|
|
|
|
2025-04-02 10:50:36 +01:00
|
|
|
|
If an `'unhandledRejection'` event is emitted but not handled it will
|
|
|
|
|
be raised as an uncaught exception. This alongside other behaviors of
|
|
|
|
|
`'unhandledRejection'` events can changed via the [`--unhandled-rejections`][] flag.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### Event: `'warning'`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v6.0.0
|
|
|
|
|
-->
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2018-04-26 02:15:59 +02:00
|
|
|
|
* `warning` {Error} Key properties of the warning are:
|
|
|
|
|
* `name` {string} The name of the warning. **Default:** `'Warning'`.
|
|
|
|
|
* `message` {string} A system-provided description of the warning.
|
|
|
|
|
* `stack` {string} A stack trace to the location in the code where the warning
|
|
|
|
|
was issued.
|
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `'warning'` event is emitted whenever Node.js emits a process warning.
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
|
|
|
|
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
|
2017-11-28 21:53:24 -05:00
|
|
|
|
lead to sub-optimal application performance, bugs, or security vulnerabilities.
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-20 11:38:35 -08:00
|
|
|
|
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
|
2023-09-08 20:43:51 +05:30
|
|
|
|
`'warning'` event will still be emitted by the `process` object. Currently, it
|
|
|
|
|
is not possible to suppress specific warning types other than deprecation
|
|
|
|
|
warnings. To suppress deprecation warnings, check out the [`--no-deprecation`][]
|
|
|
|
|
flag.
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
|
|
|
|
The following example illustrates the warning that is printed to `stderr` when
|
2018-04-29 14:16:44 +03:00
|
|
|
|
too many listeners have been added to an event:
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2019-09-01 11:07:24 +08:00
|
|
|
|
```console
|
2016-01-20 11:38:35 -08:00
|
|
|
|
$ node
|
2017-03-10 10:52:43 +08:00
|
|
|
|
> events.defaultMaxListeners = 1;
|
2016-01-20 11:38:35 -08:00
|
|
|
|
> process.on('foo', () => {});
|
|
|
|
|
> process.on('foo', () => {});
|
2017-04-13 04:31:39 +03:00
|
|
|
|
> (node:38638) MaxListenersExceededWarning: Possible EventEmitter memory leak
|
|
|
|
|
detected. 2 foo listeners added. Use emitter.setMaxListeners() to increase limit
|
2016-01-20 11:38:35 -08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
In contrast, the following example turns off the default warning output and
|
|
|
|
|
adds a custom handler to the `'warning'` event:
|
|
|
|
|
|
2019-09-01 11:07:24 +08:00
|
|
|
|
```console
|
2016-01-20 11:38:35 -08:00
|
|
|
|
$ node --no-warnings
|
2017-04-13 04:31:39 +03:00
|
|
|
|
> const p = process.on('warning', (warning) => console.warn('Do not do that!'));
|
2017-03-10 10:52:43 +08:00
|
|
|
|
> events.defaultMaxListeners = 1;
|
2016-01-20 11:38:35 -08:00
|
|
|
|
> 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.
|
|
|
|
|
|
2020-09-14 17:28:27 -07:00
|
|
|
|
Launching Node.js using the `--throw-deprecation` command-line flag will
|
2016-01-20 11:38:35 -08:00
|
|
|
|
cause custom deprecation warnings to be thrown as exceptions.
|
|
|
|
|
|
2020-09-14 17:28:27 -07:00
|
|
|
|
Using the `--trace-deprecation` command-line flag will cause the custom
|
2016-01-20 11:38:35 -08:00
|
|
|
|
deprecation to be printed to `stderr` along with the stack trace.
|
|
|
|
|
|
2020-09-14 17:28:27 -07:00
|
|
|
|
Using the `--no-deprecation` command-line flag will suppress all reporting
|
2016-01-20 11:38:35 -08:00
|
|
|
|
of the custom deprecation.
|
|
|
|
|
|
2020-09-14 17:28:27 -07:00
|
|
|
|
The `*-deprecation` command-line flags only affect warnings that use the name
|
2018-04-09 19:30:22 +03:00
|
|
|
|
`'DeprecationWarning'`.
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2016-11-12 23:38:29 -05:00
|
|
|
|
#### Emitting custom warnings
|
|
|
|
|
|
|
|
|
|
See the [`process.emitWarning()`][process_emit_warning] method for issuing
|
|
|
|
|
custom or application-specific warnings.
|
|
|
|
|
|
2020-12-31 14:53:05 -08:00
|
|
|
|
#### Node.js warning names
|
|
|
|
|
|
|
|
|
|
There are no strict guidelines for warning types (as identified by the `name`
|
|
|
|
|
property) emitted by Node.js. New types of warnings can be added at any time.
|
|
|
|
|
A few of the warning types that are most common include:
|
|
|
|
|
|
|
|
|
|
* `'DeprecationWarning'` - Indicates use of a deprecated Node.js API or feature.
|
|
|
|
|
Such warnings must include a `'code'` property identifying the
|
|
|
|
|
[deprecation code][].
|
|
|
|
|
* `'ExperimentalWarning'` - Indicates use of an experimental Node.js API or
|
|
|
|
|
feature. Such features must be used with caution as they may change at any
|
|
|
|
|
time and are not subject to the same strict semantic-versioning and long-term
|
|
|
|
|
support policies as supported features.
|
|
|
|
|
* `'MaxListenersExceededWarning'` - Indicates that too many listeners for a
|
|
|
|
|
given event have been registered on either an `EventEmitter` or `EventTarget`.
|
|
|
|
|
This is often an indication of a memory leak.
|
|
|
|
|
* `'TimeoutOverflowWarning'` - Indicates that a numeric value that cannot fit
|
|
|
|
|
within a 32-bit signed integer has been provided to either the `setTimeout()`
|
|
|
|
|
or `setInterval()` functions.
|
2024-06-28 21:06:31 +09:30
|
|
|
|
* `'TimeoutNegativeWarning'` - Indicates that a negative number has provided to
|
|
|
|
|
either the `setTimeout()` or `setInterval()` functions.
|
|
|
|
|
* `'TimeoutNaNWarning'` - Indicates that a value which is not a number has
|
|
|
|
|
provided to either the `setTimeout()` or `setInterval()` functions.
|
2020-12-31 14:53:05 -08:00
|
|
|
|
* `'UnsupportedWarning'` - Indicates use of an unsupported option or feature
|
|
|
|
|
that will be ignored rather than treated as an error. One example is use of
|
|
|
|
|
the HTTP response status message when using the HTTP/2 compatibility API.
|
|
|
|
|
|
2024-01-05 11:33:19 -08:00
|
|
|
|
### Event: `'worker'`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
|
|
|
|
added:
|
|
|
|
|
- v16.2.0
|
|
|
|
|
- v14.18.0
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* `worker` {Worker} The {Worker} that was created.
|
|
|
|
|
|
|
|
|
|
The `'worker'` event is emitted after a new {Worker} thread has been created.
|
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
|
### Signal events
|
2012-02-27 11:09:34 -08:00
|
|
|
|
|
|
|
|
|
<!--type=event-->
|
2021-09-19 17:18:42 -07:00
|
|
|
|
|
2013-09-19 12:27:06 +02:00
|
|
|
|
<!--name=SIGINT, SIGHUP, etc.-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
Signal events will be emitted when the Node.js process receives a signal. Please
|
2016-10-27 21:22:43 +02:00
|
|
|
|
refer to signal(7) for a listing of standard POSIX signal names such as
|
2018-04-09 19:30:22 +03:00
|
|
|
|
`'SIGINT'`, `'SIGHUP'`, etc.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2019-12-17 00:50:21 +08:00
|
|
|
|
Signals are not available on [`Worker`][] threads.
|
|
|
|
|
|
2017-09-25 11:28:00 +02:00
|
|
|
|
The signal handler will receive the signal's name (`'SIGINT'`,
|
2021-10-10 21:55:04 -07:00
|
|
|
|
`'SIGTERM'`, etc.) as the first argument.
|
2017-09-25 11:28:00 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The name of each event will be the uppercase common name for the signal (e.g.
|
|
|
|
|
`'SIGINT'` for `SIGINT` signals).
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
// Begin reading from stdin so the process does not exit.
|
|
|
|
|
process.stdin.resume();
|
|
|
|
|
|
|
|
|
|
process.on('SIGINT', () => {
|
|
|
|
|
console.log('Received SIGINT. Press Control-D to exit.');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Using a single function to handle multiple signals
|
|
|
|
|
function handle(signal) {
|
|
|
|
|
console.log(`Received ${signal}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
process.on('SIGINT', handle);
|
|
|
|
|
process.on('SIGTERM', handle);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
// Begin reading from stdin so the process does not exit.
|
2016-01-17 18:39:07 +01:00
|
|
|
|
process.stdin.resume();
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
process.on('SIGINT', () => {
|
2018-04-02 08:38:48 +03:00
|
|
|
|
console.log('Received SIGINT. Press Control-D to exit.');
|
2016-01-17 18:39:07 +01:00
|
|
|
|
});
|
2017-09-25 11:28:00 +02:00
|
|
|
|
|
|
|
|
|
// Using a single function to handle multiple signals
|
|
|
|
|
function handle(signal) {
|
|
|
|
|
console.log(`Received ${signal}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
process.on('SIGINT', handle);
|
|
|
|
|
process.on('SIGTERM', handle);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2018-04-09 19:30:22 +03:00
|
|
|
|
* `'SIGUSR1'` is reserved by Node.js to start the [debugger][]. It's possible to
|
2018-03-30 16:49:57 -05:00
|
|
|
|
install a listener but doing so might interfere with the debugger.
|
2018-04-09 19:30:22 +03:00
|
|
|
|
* `'SIGTERM'` and `'SIGINT'` have default handlers on non-Windows platforms that
|
2017-12-27 19:21:06 -08:00
|
|
|
|
reset 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 11:10:46 -08:00
|
|
|
|
removed (Node.js will no longer exit).
|
2018-04-09 19:30:22 +03:00
|
|
|
|
* `'SIGPIPE'` is ignored by default. It can have a listener installed.
|
|
|
|
|
* `'SIGHUP'` is generated on Windows when the console window is closed, and on
|
2018-11-13 20:41:51 -08:00
|
|
|
|
other platforms under various similar conditions. See signal(7). It can have a
|
2015-08-13 12:14:34 -04: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 22:21:11 +01:00
|
|
|
|
behavior of `SIGHUP` is to terminate Node.js, but once a listener has been
|
|
|
|
|
installed its default behavior will be removed.
|
2018-04-09 19:30:22 +03:00
|
|
|
|
* `'SIGTERM'` is not supported on Windows, it can be listened on.
|
|
|
|
|
* `'SIGINT'` from the terminal is supported on all platforms, and can usually be
|
2020-10-10 05:30:20 -07:00
|
|
|
|
generated with <kbd>Ctrl</kbd>+<kbd>C</kbd> (though this may be configurable).
|
2021-10-10 21:55:04 -07:00
|
|
|
|
It is not generated when [terminal raw mode][] is enabled
|
|
|
|
|
and <kbd>Ctrl</kbd>+<kbd>C</kbd> is used.
|
2020-10-10 05:30:20 -07:00
|
|
|
|
* `'SIGBREAK'` is delivered on Windows when <kbd>Ctrl</kbd>+<kbd>Break</kbd> is
|
|
|
|
|
pressed. On non-Windows platforms, it can be listened on, but there is no way
|
|
|
|
|
to send or generate it.
|
2018-04-09 19:30:22 +03:00
|
|
|
|
* `'SIGWINCH'` is delivered when the console has been resized. On Windows, this
|
2016-04-21 00:12:40 +02:00
|
|
|
|
will only happen on write to the console when the cursor is being moved, or
|
2016-02-17 11:10:46 -08:00
|
|
|
|
when a readable tty is used in raw mode.
|
2018-04-09 19:30:22 +03:00
|
|
|
|
* `'SIGKILL'` cannot have a listener installed, it will unconditionally
|
|
|
|
|
terminate Node.js on all platforms.
|
|
|
|
|
* `'SIGSTOP'` cannot have a listener installed.
|
2022-05-22 21:26:12 +02:00
|
|
|
|
* `'SIGBUS'`, `'SIGFPE'`, `'SIGSEGV'`, and `'SIGILL'`, when not raised
|
2021-10-10 21:55:04 -07:00
|
|
|
|
artificially using kill(2), inherently leave the process in a state from
|
|
|
|
|
which it is not safe to call JS listeners. Doing so might cause the process
|
|
|
|
|
to stop responding.
|
2020-03-03 16:35:37 -08:00
|
|
|
|
* `0` can be sent to test for the existence of a process, it has no effect if
|
2021-10-10 21:55:04 -07:00
|
|
|
|
the process exists, but will throw an error if the process does not exist.
|
2020-03-03 16:35:37 -08:00
|
|
|
|
|
|
|
|
|
Windows does not support signals so has no equivalent to termination by signal,
|
|
|
|
|
but Node.js offers some emulation with [`process.kill()`][], and
|
|
|
|
|
[`subprocess.kill()`][]:
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2020-03-03 16:35:37 -08:00
|
|
|
|
* Sending `SIGINT`, `SIGTERM`, and `SIGKILL` will cause the unconditional
|
|
|
|
|
termination of the target process, and afterwards, subprocess will report that
|
|
|
|
|
the process was terminated by signal.
|
|
|
|
|
* Sending signal `0` can be used as a platform independent way to test for the
|
|
|
|
|
existence of a process.
|
2015-09-14 10:28:02 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.abort()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.7.0
|
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.abort()` method causes the Node.js process to exit immediately and
|
2015-11-05 11:00:46 -05:00
|
|
|
|
generate a core file.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2017-09-01 17:03:41 +02:00
|
|
|
|
This feature is not available in [`Worker`][] threads.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.allowedNodeEnvironmentFlags`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2018-03-13 15:53:39 -07:00
|
|
|
|
<!-- YAML
|
2018-09-06, Version 10.10.0 (Current)
Notable changes:
* child_process:
* `TypedArray` and `DataView` values are now accepted as input by
`execFileSync` and `spawnSync`. https://github.com/nodejs/node/pull/22409
* coverage:
* Native V8 code coverage information can now be output to disk by setting the
environment variable `NODE_V8_COVERAGE` to a directory. https://github.com/nodejs/node/pull/22527
* deps:
* The bundled npm was upgraded to version 6.4.1. https://github.com/nodejs/node/pull/22591
* Changelogs:
[6.3.0-next.0](https://github.com/npm/cli/releases/tag/v6.3.0-next.0)
[6.3.0](https://github.com/npm/cli/releases/tag/v6.3.0)
[6.4.0](https://github.com/npm/cli/releases/tag/v6.4.0)
[6.4.1](https://github.com/npm/cli/releases/tag/v6.4.1)
* fs:
* The methods `fs.read`, `fs.readSync`, `fs.write`, `fs.writeSync`,
`fs.writeFile` and `fs.writeFileSync` now all accept `TypedArray` and
`DataView` objects. https://github.com/nodejs/node/pull/22150
* A new boolean option, `withFileTypes`, can be passed to to `fs.readdir` and
`fs.readdirSync`. If set to true, the methods return an array of directory
entries. These are objects that can be used to determine the type of each
entry and filter them based on that without calling `fs.stat`. https://github.com/nodejs/node/pull/22020
* http2:
* The `http2` module is no longer experimental. https://github.com/nodejs/node/pull/22466
* os:
* Added two new methods: `os.getPriority` and `os.setPriority`, allowing to
manipulate the scheduling priority of processes. https://github.com/nodejs/node/pull/22407
* process:
* Added `process.allowedNodeEnvironmentFlags`. This object can be used to
programmatically validate and list flags that are allowed in the
`NODE_OPTIONS` environment variable. https://github.com/nodejs/node/pull/19335
* src:
* Deprecated option variables in public C++ API. https://github.com/nodejs/node/pull/22515
* Refactored options parsing. https://github.com/nodejs/node/pull/22392
* vm:
* Added `vm.compileFunction`, a method to create new JavaScript functions from
a source body, with options similar to those of the other `vm` methods. https://github.com/nodejs/node/pull/21571
* Added new collaborators:
* [lundibundi](https://github.com/lundibundi) - Denys Otrishko
PR-URL: https://github.com/nodejs/node/pull/22716
2018-09-03 20:14:31 +02:00
|
|
|
|
added: v10.10.0
|
2018-03-13 15:53:39 -07:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {Set}
|
|
|
|
|
|
|
|
|
|
The `process.allowedNodeEnvironmentFlags` property is a special,
|
|
|
|
|
read-only `Set` of flags allowable within the [`NODE_OPTIONS`][]
|
|
|
|
|
environment variable.
|
|
|
|
|
|
|
|
|
|
`process.allowedNodeEnvironmentFlags` extends `Set`, but overrides
|
|
|
|
|
`Set.prototype.has` to recognize several different possible flag
|
2020-06-20 16:46:33 -07:00
|
|
|
|
representations. `process.allowedNodeEnvironmentFlags.has()` will
|
2018-03-13 15:53:39 -07:00
|
|
|
|
return `true` in the following cases:
|
|
|
|
|
|
2019-09-13 00:22:29 -04:00
|
|
|
|
* Flags may omit leading single (`-`) or double (`--`) dashes; e.g.,
|
2018-03-13 15:53:39 -07:00
|
|
|
|
`inspect-brk` for `--inspect-brk`, or `r` for `-r`.
|
2019-09-13 00:22:29 -04:00
|
|
|
|
* Flags passed through to V8 (as listed in `--v8-options`) may replace
|
2021-10-10 21:55:04 -07:00
|
|
|
|
one or more _non-leading_ dashes for an underscore, or vice-versa;
|
2018-03-13 15:53:39 -07:00
|
|
|
|
e.g., `--perf_basic_prof`, `--perf-basic-prof`, `--perf_basic-prof`,
|
|
|
|
|
etc.
|
2019-09-13 00:22:29 -04:00
|
|
|
|
* Flags may contain one or more equals (`=`) characters; all
|
2018-03-13 15:53:39 -07:00
|
|
|
|
characters after and including the first equals will be ignored;
|
|
|
|
|
e.g., `--stack-trace-limit=100`.
|
2021-10-10 21:55:04 -07:00
|
|
|
|
* Flags _must_ be allowable within [`NODE_OPTIONS`][].
|
2018-03-13 15:53:39 -07:00
|
|
|
|
|
|
|
|
|
When iterating over `process.allowedNodeEnvironmentFlags`, flags will
|
2021-10-10 21:55:04 -07:00
|
|
|
|
appear only _once_; each will begin with one or more dashes. Flags
|
2018-03-13 15:53:39 -07:00
|
|
|
|
passed through to V8 will contain underscores instead of non-leading
|
|
|
|
|
dashes:
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { allowedNodeEnvironmentFlags } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
allowedNodeEnvironmentFlags.forEach((flag) => {
|
|
|
|
|
// -r
|
|
|
|
|
// --inspect-brk
|
|
|
|
|
// --abort_on_uncaught_exception
|
|
|
|
|
// ...
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { allowedNodeEnvironmentFlags } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
allowedNodeEnvironmentFlags.forEach((flag) => {
|
2018-03-13 15:53:39 -07:00
|
|
|
|
// -r
|
|
|
|
|
// --inspect-brk
|
|
|
|
|
// --abort_on_uncaught_exception
|
|
|
|
|
// ...
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The methods `add()`, `clear()`, and `delete()` of
|
|
|
|
|
`process.allowedNodeEnvironmentFlags` do nothing, and will fail
|
|
|
|
|
silently.
|
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
If Node.js was compiled _without_ [`NODE_OPTIONS`][] support (shown in
|
2018-03-13 15:53:39 -07:00
|
|
|
|
[`process.config`][]), `process.allowedNodeEnvironmentFlags` will
|
2021-10-10 21:55:04 -07:00
|
|
|
|
contain what _would have_ been allowable.
|
2018-03-13 15:53:39 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.arch`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.0
|
|
|
|
|
-->
|
2013-07-08 21:09:44 +04:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* {string}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2019-10-23 15:17:49 -07:00
|
|
|
|
The operating system CPU architecture for which the Node.js binary was compiled.
|
2023-10-17 04:19:31 +08:00
|
|
|
|
Possible values are: `'arm'`, `'arm64'`, `'ia32'`, `'loong64'`, `'mips'`,
|
2024-08-24 10:28:01 +02:00
|
|
|
|
`'mipsel'`, `'ppc64'`, `'riscv64'`, `'s390'`, `'s390x'`, and `'x64'`.
|
2013-07-08 21:09:44 +04:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { arch } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`This processor architecture is ${arch}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { arch } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2022-01-19 14:44:43 +01:00
|
|
|
|
console.log(`This processor architecture is ${arch}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.argv`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.27
|
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
* {string\[]}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2020-09-14 17:28:27 -07:00
|
|
|
|
The `process.argv` property returns an array containing the command-line
|
2016-05-27 12:24:05 -07:00
|
|
|
|
arguments passed when the Node.js process was launched. The first element will
|
2019-10-02 00:31:57 -04:00
|
|
|
|
be [`process.execPath`][]. See `process.argv0` if access to the original value
|
|
|
|
|
of `argv[0]` is needed. The second element will be the path to the JavaScript
|
2020-09-14 17:28:27 -07:00
|
|
|
|
file being executed. The remaining elements will be any additional command-line
|
2016-07-13 20:18:22 -04:00
|
|
|
|
arguments.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
|
|
|
|
For example, assuming the following script for `process-args.js`:
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { argv } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
// print process.argv
|
|
|
|
|
argv.forEach((val, index) => {
|
|
|
|
|
console.log(`${index}: ${val}`);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { argv } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
// print process.argv
|
2021-06-15 10:09:29 -07:00
|
|
|
|
argv.forEach((val, index) => {
|
2016-01-17 18:39:07 +01:00
|
|
|
|
console.log(`${index}: ${val}`);
|
|
|
|
|
});
|
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
Launching the Node.js process as:
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2023-05-20 00:14:03 +02:00
|
|
|
|
```bash
|
|
|
|
|
node process-args.js one two=three four
|
2016-05-27 12:24:05 -07:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Would generate the output:
|
|
|
|
|
|
|
|
|
|
```text
|
2016-06-28 01:47:13 +05:30
|
|
|
|
0: /usr/local/bin/node
|
2017-04-13 04:31:39 +03:00
|
|
|
|
1: /Users/mjr/work/node/process-args.js
|
2016-01-17 18:39:07 +01:00
|
|
|
|
2: one
|
|
|
|
|
3: two=three
|
|
|
|
|
4: four
|
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.argv0`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-07-13 20:18:22 -04:00
|
|
|
|
<!-- YAML
|
2018-03-25 12:01:33 +02:00
|
|
|
|
added: v6.4.0
|
2016-07-13 20:18:22 -04:00
|
|
|
|
-->
|
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* {string}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-07-13 20:18:22 -04:00
|
|
|
|
The `process.argv0` property stores a read-only copy of the original value of
|
|
|
|
|
`argv[0]` passed when Node.js starts.
|
|
|
|
|
|
2016-09-20 07:44:22 +03:00
|
|
|
|
```console
|
2016-07-13 20:18:22 -04:00
|
|
|
|
$ bash -c 'exec -a customArgv0 ./node'
|
|
|
|
|
> process.argv[0]
|
|
|
|
|
'/Volumes/code/external/node/out/Release/node'
|
|
|
|
|
> process.argv0
|
|
|
|
|
'customArgv0'
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.channel`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-10-27 14:36:49 -04:00
|
|
|
|
<!-- YAML
|
2016-11-03 06:00:09 -05:00
|
|
|
|
added: v7.1.0
|
2019-10-29 20:15:31 +01:00
|
|
|
|
changes:
|
2020-03-10 17:16:08 +00:00
|
|
|
|
- version: v14.0.0
|
2019-10-29 20:15:31 +01:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/30165
|
|
|
|
|
description: The object no longer accidentally exposes native C++ bindings.
|
2016-10-27 14:36:49 -04:00
|
|
|
|
-->
|
|
|
|
|
|
2018-03-24 13:42:20 +02:00
|
|
|
|
* {Object}
|
|
|
|
|
|
2016-10-27 14:36:49 -04:00
|
|
|
|
If the Node.js process was spawned with an IPC channel (see the
|
|
|
|
|
[Child Process][] documentation), the `process.channel`
|
|
|
|
|
property is a reference to the IPC channel. If no IPC channel exists, this
|
|
|
|
|
property is `undefined`.
|
|
|
|
|
|
2019-10-29 20:15:31 +01:00
|
|
|
|
### `process.channel.ref()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-10-29 20:15:31 +01:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v7.1.0
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
This method makes the IPC channel keep the event loop of the process
|
|
|
|
|
running if `.unref()` has been called before.
|
|
|
|
|
|
|
|
|
|
Typically, this is managed through the number of `'disconnect'` and `'message'`
|
|
|
|
|
listeners on the `process` object. However, this method can be used to
|
|
|
|
|
explicitly request a specific behavior.
|
|
|
|
|
|
|
|
|
|
### `process.channel.unref()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-10-29 20:15:31 +01:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v7.1.0
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
This method makes the IPC channel not keep the event loop of the process
|
|
|
|
|
running, and lets it finish even while the channel is open.
|
|
|
|
|
|
|
|
|
|
Typically, this is managed through the number of `'disconnect'` and `'message'`
|
|
|
|
|
listeners on the `process` object. However, this method can be used to
|
|
|
|
|
explicitly request a specific behavior.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.chdir(directory)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.17
|
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
|
* `directory` {string}
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
|
|
|
|
The `process.chdir()` method changes the current working directory of the
|
|
|
|
|
Node.js process or throws an exception if doing so fails (for instance, if
|
|
|
|
|
the specified `directory` does not exist).
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { chdir, cwd } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Starting directory: ${cwd()}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
try {
|
2021-06-15 10:09:29 -07:00
|
|
|
|
chdir('/tmp');
|
|
|
|
|
console.log(`New directory: ${cwd()}`);
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error(`chdir: ${err}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { chdir, cwd } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Starting directory: ${cwd()}`);
|
|
|
|
|
try {
|
|
|
|
|
chdir('/tmp');
|
|
|
|
|
console.log(`New directory: ${cwd()}`);
|
2017-04-21 17:38:31 +03:00
|
|
|
|
} catch (err) {
|
2017-04-13 04:31:39 +03:00
|
|
|
|
console.error(`chdir: ${err}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
}
|
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2017-09-01 17:03:41 +02:00
|
|
|
|
This feature is not available in [`Worker`][] threads.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.config`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.7.7
|
2021-01-12 15:38:00 -08:00
|
|
|
|
changes:
|
2022-09-13 12:53:52 -03:00
|
|
|
|
- version: v19.0.0
|
2022-09-11 00:00:23 +02:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/43627
|
|
|
|
|
description: The `process.config` object is now frozen.
|
2021-03-03 15:36:13 +00:00
|
|
|
|
- version: v16.0.0
|
2021-01-12 15:38:00 -08:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/36902
|
|
|
|
|
description: Modifying process.config has been deprecated.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-11-07 23:23:41 +02:00
|
|
|
|
* {Object}
|
|
|
|
|
|
2022-09-11 00:00:23 +02:00
|
|
|
|
The `process.config` property returns a frozen `Object` containing the
|
|
|
|
|
JavaScript representation of the configure options used to compile the current
|
|
|
|
|
Node.js executable. This is the same as the `config.gypi` file that was produced
|
|
|
|
|
when running the `./configure` script.
|
2013-05-22 18:04:36 -07:00
|
|
|
|
|
2015-11-05 11:00:46 -05:00
|
|
|
|
An example of the possible output looks like:
|
2013-05-22 18:04:36 -07:00
|
|
|
|
|
2017-07-03 03:05:59 +03:00
|
|
|
|
<!-- eslint-skip -->
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-04-21 22:55:51 +03:00
|
|
|
|
```js
|
2016-01-17 18:39:07 +01:00
|
|
|
|
{
|
|
|
|
|
target_defaults:
|
|
|
|
|
{ cflags: [],
|
|
|
|
|
default_configuration: 'Release',
|
|
|
|
|
defines: [],
|
|
|
|
|
include_dirs: [],
|
|
|
|
|
libraries: [] },
|
|
|
|
|
variables:
|
|
|
|
|
{
|
|
|
|
|
host_arch: 'x64',
|
2019-08-30 23:54:36 -07:00
|
|
|
|
napi_build_version: 5,
|
2016-01-17 18:39:07 +01:00
|
|
|
|
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_openssl: 'true',
|
|
|
|
|
node_shared_openssl: 'false',
|
|
|
|
|
target_arch: 'x64',
|
2019-01-26 00:33:36 +05:30
|
|
|
|
v8_use_snapshot: 1
|
2016-01-17 18:39:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
2011-12-14 17:02:15 -08:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.connected`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.7.2
|
|
|
|
|
-->
|
2011-12-14 17:02:15 -08:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* {boolean}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
If the Node.js process is spawned with an IPC channel (see the [Child Process][]
|
|
|
|
|
and [Cluster][] documentation), the `process.connected` property will return
|
|
|
|
|
`true` so long as the IPC channel is connected and will return `false` after
|
|
|
|
|
`process.disconnect()` is called.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
Once `process.connected` is `false`, it is no longer possible to send messages
|
|
|
|
|
over the IPC channel using `process.send()`.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2023-01-25 08:47:08 +08:00
|
|
|
|
## `process.constrainedMemory()`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2023-03-04 23:12:52 -05:00
|
|
|
|
added:
|
|
|
|
|
- v19.6.0
|
|
|
|
|
- v18.15.0
|
2024-03-11 11:04:27 +08:00
|
|
|
|
changes:
|
2025-04-05 11:58:51 -07:00
|
|
|
|
- version: REPLACEME
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/57765
|
|
|
|
|
description: Change stability index for this feature from Experimental to Stable.
|
2024-05-02 11:31:36 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v22.0.0
|
|
|
|
|
- v20.13.0
|
2024-03-11 11:04:27 +08:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/52039
|
|
|
|
|
description: Aligned return value with `uv_get_constrained_memory`.
|
2023-01-25 08:47:08 +08:00
|
|
|
|
-->
|
|
|
|
|
|
2024-03-11 11:04:27 +08:00
|
|
|
|
* {number}
|
2023-01-25 08:47:08 +08:00
|
|
|
|
|
|
|
|
|
Gets the amount of memory available to the process (in bytes) based on
|
|
|
|
|
limits imposed by the OS. If there is no such constraint, or the constraint
|
2024-03-11 11:04:27 +08:00
|
|
|
|
is unknown, `0` is returned.
|
2023-01-25 08:47:08 +08:00
|
|
|
|
|
|
|
|
|
See [`uv_get_constrained_memory`][uv_get_constrained_memory] for more
|
|
|
|
|
information.
|
|
|
|
|
|
2024-03-13 12:06:49 +08:00
|
|
|
|
## `process.availableMemory()`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-05-02 11:31:36 +02:00
|
|
|
|
added:
|
|
|
|
|
- v22.0.0
|
|
|
|
|
- v20.13.0
|
2025-04-05 11:58:51 -07:00
|
|
|
|
changes:
|
|
|
|
|
- version: REPLACEME
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/57765
|
|
|
|
|
description: Change stability index for this feature from Experimental to Stable.
|
2024-03-13 12:06:49 +08:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {number}
|
|
|
|
|
|
|
|
|
|
Gets the amount of free memory that is still available to the process
|
|
|
|
|
(in bytes).
|
|
|
|
|
|
|
|
|
|
See [`uv_get_available_memory`][uv_get_available_memory] for more
|
|
|
|
|
information.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.cpuUsage([previousValue])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-18 20:45:00 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v6.1.0
|
|
|
|
|
-->
|
2016-04-05 09:17:48 -04:00
|
|
|
|
|
2016-08-18 14:41:13 +02:00
|
|
|
|
* `previousValue` {Object} A previous return value from calling
|
2016-05-27 12:24:05 -07:00
|
|
|
|
`process.cpuUsage()`
|
2016-11-11 21:29:01 +01:00
|
|
|
|
* Returns: {Object}
|
2019-09-01 02:18:32 -04:00
|
|
|
|
* `user` {integer}
|
|
|
|
|
* `system` {integer}
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
|
|
|
|
The `process.cpuUsage()` method 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.
|
2016-04-05 09:17:48 -04:00
|
|
|
|
|
|
|
|
|
The result of a previous call to `process.cpuUsage()` can be passed as the
|
|
|
|
|
argument to the function, to get a diff reading.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { cpuUsage } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const startUsage = cpuUsage();
|
2016-04-05 09:17:48 -04:00
|
|
|
|
// { user: 38579, system: 6986 }
|
|
|
|
|
|
|
|
|
|
// spin the CPU for 500 milliseconds
|
|
|
|
|
const now = Date.now();
|
|
|
|
|
while (Date.now() - now < 500);
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
console.log(cpuUsage(startUsage));
|
|
|
|
|
// { user: 514883, system: 11226 }
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { cpuUsage } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const startUsage = cpuUsage();
|
|
|
|
|
// { user: 38579, system: 6986 }
|
|
|
|
|
|
|
|
|
|
// spin the CPU for 500 milliseconds
|
|
|
|
|
const now = Date.now();
|
|
|
|
|
while (Date.now() - now < 500);
|
|
|
|
|
|
|
|
|
|
console.log(cpuUsage(startUsage));
|
2016-04-05 09:17:48 -04:00
|
|
|
|
// { user: 514883, system: 11226 }
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.cwd()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.8
|
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* Returns: {string}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.cwd()` method returns the current working directory of the Node.js
|
|
|
|
|
process.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { cwd } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Current directory: ${cwd()}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { cwd } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Current directory: ${cwd()}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2019-08-29 09:28:03 -04:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.debugPort`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2018-02-11 20:21:09 +01:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.7.2
|
|
|
|
|
-->
|
2019-09-06 01:42:22 -04:00
|
|
|
|
|
2018-02-11 20:21:09 +01:00
|
|
|
|
* {number}
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2020-02-11 14:59:59 -10:00
|
|
|
|
The port used by the Node.js debugger when enabled.
|
2018-02-11 20:21:09 +01:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.debugPort = 5858;
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2018-02-11 20:21:09 +01:00
|
|
|
|
process.debugPort = 5858;
|
|
|
|
|
```
|
2019-08-29 09:28:03 -04:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.disconnect()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.7.2
|
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
If the Node.js process is spawned with an IPC channel (see the [Child Process][]
|
|
|
|
|
and [Cluster][] documentation), the `process.disconnect()` method will close the
|
|
|
|
|
IPC channel to the parent process, allowing the child process to exit gracefully
|
|
|
|
|
once there are no other connections keeping it alive.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2019-06-20 13:37:17 -04:00
|
|
|
|
The effect of calling `process.disconnect()` is the same as calling
|
|
|
|
|
[`ChildProcess.disconnect()`][] from the parent process.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
If the Node.js process was not spawned with an IPC channel,
|
|
|
|
|
`process.disconnect()` will be `undefined`.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.dlopen(module, filename[, flags])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-04-29 16:06:22 -04:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.16
|
|
|
|
|
changes:
|
2017-09-01 09:50:47 -07:00
|
|
|
|
- version: v9.0.0
|
2017-04-29 16:06:22 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/12794
|
|
|
|
|
description: Added support for the `flags` argument.
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* `module` {Object}
|
|
|
|
|
* `filename` {string}
|
2018-04-02 04:44:32 +03:00
|
|
|
|
* `flags` {os.constants.dlopen} **Default:** `os.constants.dlopen.RTLD_LAZY`
|
2017-04-29 16:06:22 -04:00
|
|
|
|
|
2020-11-08 16:05:55 -08:00
|
|
|
|
The `process.dlopen()` method allows dynamically loading shared objects. It is
|
|
|
|
|
primarily used by `require()` to load C++ Addons, and should not be used
|
|
|
|
|
directly, except in special cases. In other words, [`require()`][] should be
|
|
|
|
|
preferred over `process.dlopen()` unless there are specific reasons such as
|
|
|
|
|
custom dlopen flags or loading from ES modules.
|
2017-04-29 16:06:22 -04:00
|
|
|
|
|
|
|
|
|
The `flags` argument is an integer that allows to specify dlopen
|
|
|
|
|
behavior. See the [`os.constants.dlopen`][] documentation for details.
|
|
|
|
|
|
2020-11-08 16:05:55 -08:00
|
|
|
|
An important requirement when calling `process.dlopen()` is that the `module`
|
|
|
|
|
instance must be passed. Functions exported by the C++ Addon are then
|
|
|
|
|
accessible via `module.exports`.
|
2017-04-29 16:06:22 -04:00
|
|
|
|
|
2020-11-08 16:05:55 -08:00
|
|
|
|
The example below shows how to load a C++ Addon, named `local.node`,
|
|
|
|
|
that exports a `foo` function. All the symbols are loaded before
|
2017-04-29 16:06:22 -04:00
|
|
|
|
the call returns, by passing the `RTLD_NOW` constant. In this example
|
|
|
|
|
the constant is assumed to be available.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { dlopen } from 'node:process';
|
|
|
|
|
import { constants } from 'node:os';
|
|
|
|
|
import { fileURLToPath } from 'node:url';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const module = { exports: {} };
|
|
|
|
|
dlopen(module, fileURLToPath(new URL('local.node', import.meta.url)),
|
|
|
|
|
constants.dlopen.RTLD_NOW);
|
|
|
|
|
module.exports.foo();
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { dlopen } = require('node:process');
|
|
|
|
|
const { constants } = require('node:os');
|
|
|
|
|
const { join } = require('node:path');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2020-11-08 16:05:55 -08:00
|
|
|
|
const module = { exports: {} };
|
2021-06-15 10:09:29 -07:00
|
|
|
|
dlopen(module, join(__dirname, 'local.node'), constants.dlopen.RTLD_NOW);
|
2017-04-29 16:06:22 -04:00
|
|
|
|
module.exports.foo();
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.emitWarning(warning[, options])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-04-28 09:06:10 -07:00
|
|
|
|
<!-- YAML
|
2018-03-25 12:01:33 +02:00
|
|
|
|
added: v8.0.0
|
2017-04-28 09:06:10 -07:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* `warning` {string|Error} The warning to emit.
|
|
|
|
|
* `options` {Object}
|
2018-04-29 20:46:41 +03:00
|
|
|
|
* `type` {string} When `warning` is a `String`, `type` is the name to use
|
2021-10-10 21:55:04 -07:00
|
|
|
|
for the _type_ of warning being emitted. **Default:** `'Warning'`.
|
2017-04-28 09:06:10 -07:00
|
|
|
|
* `code` {string} A unique identifier for the warning instance being emitted.
|
2018-04-29 20:46:41 +03:00
|
|
|
|
* `ctor` {Function} When `warning` is a `String`, `ctor` is an optional
|
2018-04-02 04:44:32 +03:00
|
|
|
|
function used to limit the generated stack trace. **Default:**
|
|
|
|
|
`process.emitWarning`.
|
2017-04-28 09:06:10 -07:00
|
|
|
|
* `detail` {string} Additional text to include with the error.
|
|
|
|
|
|
|
|
|
|
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
|
2018-04-09 19:30:22 +03:00
|
|
|
|
[`'warning'`][process_warning] event.
|
2017-04-28 09:06:10 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { emitWarning } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
// Emit a warning with a code and additional detail.
|
|
|
|
|
emitWarning('Something happened!', {
|
|
|
|
|
code: 'MY_WARNING',
|
2022-11-17 08:19:12 -05:00
|
|
|
|
detail: 'This is some additional information',
|
2021-06-15 10:09:29 -07:00
|
|
|
|
});
|
|
|
|
|
// Emits:
|
|
|
|
|
// (node:56338) [MY_WARNING] Warning: Something happened!
|
|
|
|
|
// This is some additional information
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { emitWarning } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2017-04-28 09:06:10 -07:00
|
|
|
|
// Emit a warning with a code and additional detail.
|
2021-06-15 10:09:29 -07:00
|
|
|
|
emitWarning('Something happened!', {
|
2017-04-28 09:06:10 -07:00
|
|
|
|
code: 'MY_WARNING',
|
2022-11-17 08:19:12 -05:00
|
|
|
|
detail: 'This is some additional information',
|
2017-04-28 09:06:10 -07:00
|
|
|
|
});
|
|
|
|
|
// Emits:
|
|
|
|
|
// (node:56338) [MY_WARNING] Warning: Something happened!
|
|
|
|
|
// This is some additional information
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
In this example, an `Error` object is generated internally by
|
|
|
|
|
`process.emitWarning()` and passed through to the
|
2018-04-09 19:30:22 +03:00
|
|
|
|
[`'warning'`][process_warning] handler.
|
2017-04-28 09:06:10 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('warning', (warning) => {
|
|
|
|
|
console.warn(warning.name); // 'Warning'
|
|
|
|
|
console.warn(warning.message); // 'Something happened!'
|
|
|
|
|
console.warn(warning.code); // 'MY_WARNING'
|
|
|
|
|
console.warn(warning.stack); // Stack trace
|
|
|
|
|
console.warn(warning.detail); // 'This is some additional information'
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2017-04-28 09:06:10 -07:00
|
|
|
|
process.on('warning', (warning) => {
|
|
|
|
|
console.warn(warning.name); // 'Warning'
|
|
|
|
|
console.warn(warning.message); // 'Something happened!'
|
|
|
|
|
console.warn(warning.code); // 'MY_WARNING'
|
|
|
|
|
console.warn(warning.stack); // Stack trace
|
|
|
|
|
console.warn(warning.detail); // 'This is some additional information'
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If `warning` is passed as an `Error` object, the `options` argument is ignored.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.emitWarning(warning[, type[, code]][, ctor])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v6.0.0
|
|
|
|
|
-->
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* `warning` {string|Error} The warning to emit.
|
2018-04-29 20:46:41 +03:00
|
|
|
|
* `type` {string} When `warning` is a `String`, `type` is the name to use
|
2021-10-10 21:55:04 -07:00
|
|
|
|
for the _type_ of warning being emitted. **Default:** `'Warning'`.
|
2017-02-04 16:15:33 +01:00
|
|
|
|
* `code` {string} A unique identifier for the warning instance being emitted.
|
2018-04-29 20:46:41 +03:00
|
|
|
|
* `ctor` {Function} When `warning` is a `String`, `ctor` is an optional
|
2018-04-02 04:44:32 +03:00
|
|
|
|
function used to limit the generated stack trace. **Default:**
|
|
|
|
|
`process.emitWarning`.
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
|
|
|
|
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
|
2018-04-09 19:30:22 +03:00
|
|
|
|
[`'warning'`][process_warning] event.
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { emitWarning } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2017-04-28 09:06:10 -07:00
|
|
|
|
// Emit a warning using a string.
|
2021-06-15 10:09:29 -07:00
|
|
|
|
emitWarning('Something happened!');
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Emits: (node: 56338) Warning: Something happened!
|
2016-01-20 11:38:35 -08:00
|
|
|
|
```
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { emitWarning } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
// Emit a warning using a string.
|
|
|
|
|
emitWarning('Something happened!');
|
|
|
|
|
// Emits: (node: 56338) Warning: Something happened!
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { emitWarning } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2017-04-28 09:06:10 -07:00
|
|
|
|
// Emit a warning using a string and a type.
|
2021-06-15 10:09:29 -07:00
|
|
|
|
emitWarning('Something Happened!', 'CustomWarning');
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Emits: (node:56338) CustomWarning: Something Happened!
|
2016-01-20 11:38:35 -08:00
|
|
|
|
```
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { emitWarning } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
// Emit a warning using a string and a type.
|
|
|
|
|
emitWarning('Something Happened!', 'CustomWarning');
|
|
|
|
|
// Emits: (node:56338) CustomWarning: Something Happened!
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { emitWarning } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
emitWarning('Something happened!', 'CustomWarning', 'WARN001');
|
|
|
|
|
// Emits: (node:56338) [WARN001] CustomWarning: Something happened!
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { emitWarning } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-12-04 09:30:53 -08:00
|
|
|
|
process.emitWarning('Something happened!', 'CustomWarning', 'WARN001');
|
2017-04-13 04:31:39 +03:00
|
|
|
|
// Emits: (node:56338) [WARN001] CustomWarning: Something happened!
|
2016-12-04 09:30:53 -08:00
|
|
|
|
```
|
|
|
|
|
|
2016-01-20 11:38:35 -08:00
|
|
|
|
In each of the previous examples, an `Error` object is generated internally by
|
2018-04-09 19:30:22 +03:00
|
|
|
|
`process.emitWarning()` and passed through to the [`'warning'`][process_warning]
|
|
|
|
|
handler.
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('warning', (warning) => {
|
|
|
|
|
console.warn(warning.name);
|
|
|
|
|
console.warn(warning.message);
|
|
|
|
|
console.warn(warning.code);
|
|
|
|
|
console.warn(warning.stack);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-20 11:38:35 -08:00
|
|
|
|
process.on('warning', (warning) => {
|
|
|
|
|
console.warn(warning.name);
|
|
|
|
|
console.warn(warning.message);
|
2016-12-04 09:30:53 -08:00
|
|
|
|
console.warn(warning.code);
|
2016-01-20 11:38:35 -08:00
|
|
|
|
console.warn(warning.stack);
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If `warning` is passed as an `Error` object, it will be passed through to the
|
2018-04-09 19:30:22 +03:00
|
|
|
|
`'warning'` event handler unmodified (and the optional `type`,
|
2016-12-04 09:30:53 -08:00
|
|
|
|
`code` and `ctor` arguments will be ignored):
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { emitWarning } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2017-04-28 09:06:10 -07:00
|
|
|
|
// Emit a warning using an Error object.
|
|
|
|
|
const myWarning = new Error('Something happened!');
|
2016-12-04 09:30:53 -08:00
|
|
|
|
// Use the Error name property to specify the type name
|
2016-01-20 11:38:35 -08:00
|
|
|
|
myWarning.name = 'CustomWarning';
|
2016-12-04 09:30:53 -08:00
|
|
|
|
myWarning.code = 'WARN001';
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
emitWarning(myWarning);
|
|
|
|
|
// Emits: (node:56338) [WARN001] CustomWarning: Something happened!
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { emitWarning } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
// Emit a warning using an Error object.
|
|
|
|
|
const myWarning = new Error('Something happened!');
|
|
|
|
|
// Use the Error name property to specify the type name
|
|
|
|
|
myWarning.name = 'CustomWarning';
|
|
|
|
|
myWarning.code = 'WARN001';
|
|
|
|
|
|
|
|
|
|
emitWarning(myWarning);
|
2017-04-28 09:06:10 -07:00
|
|
|
|
// Emits: (node:56338) [WARN001] CustomWarning: Something happened!
|
2016-01-20 11:38:35 -08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
A `TypeError` is thrown if `warning` is anything other than a string or `Error`
|
|
|
|
|
object.
|
|
|
|
|
|
2019-06-20 13:39:01 -06:00
|
|
|
|
While process warnings use `Error` objects, the process warning
|
2016-01-20 11:38:35 -08:00
|
|
|
|
mechanism is **not** a replacement for normal error handling mechanisms.
|
|
|
|
|
|
2016-12-04 09:30:53 -08:00
|
|
|
|
The following additional handling is implemented if the warning `type` is
|
2018-04-09 19:30:22 +03:00
|
|
|
|
`'DeprecationWarning'`:
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
|
|
|
|
* 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
|
2022-03-31 20:14:44 -07:00
|
|
|
|
so, place the `emitWarning()` behind a boolean.
|
2016-01-20 11:38:35 -08:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { emitWarning } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-20 11:38:35 -08:00
|
|
|
|
function emitMyWarning() {
|
2016-11-12 23:34:35 -05:00
|
|
|
|
if (!emitMyWarning.warned) {
|
|
|
|
|
emitMyWarning.warned = true;
|
2021-06-15 10:09:29 -07:00
|
|
|
|
emitWarning('Only warn once!');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
emitMyWarning();
|
|
|
|
|
// Emits: (node: 56339) Warning: Only warn once!
|
|
|
|
|
emitMyWarning();
|
|
|
|
|
// Emits nothing
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { emitWarning } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
function emitMyWarning() {
|
|
|
|
|
if (!emitMyWarning.warned) {
|
|
|
|
|
emitMyWarning.warned = true;
|
|
|
|
|
emitWarning('Only warn once!');
|
2016-01-20 11:38:35 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
emitMyWarning();
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Emits: (node: 56339) Warning: Only warn once!
|
2016-01-20 11:38:35 -08:00
|
|
|
|
emitMyWarning();
|
2016-11-08 21:04:57 +01:00
|
|
|
|
// Emits nothing
|
2016-01-20 11:38:35 -08:00
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.env`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-02-13 04:49:35 +02:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.27
|
2018-02-25 13:42:10 -08:00
|
|
|
|
changes:
|
2019-04-09 23:55:02 +01:00
|
|
|
|
- version: v11.14.0
|
2019-02-22 20:11:19 +01:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/26544
|
2022-05-17 21:04:51 +02:00
|
|
|
|
description: Worker threads will now use a copy of the parent thread's
|
2019-02-22 20:11:19 +01:00
|
|
|
|
`process.env` by default, configurable through the `env`
|
|
|
|
|
option of the `Worker` constructor.
|
2018-03-02 09:53:46 -08:00
|
|
|
|
- version: v10.0.0
|
2018-02-25 13:42:10 -08:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/18990
|
|
|
|
|
description: Implicit conversion of variable value to string is deprecated.
|
2017-02-13 04:49:35 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {Object}
|
|
|
|
|
|
|
|
|
|
The `process.env` property returns an object containing the user environment.
|
|
|
|
|
See environ(7).
|
|
|
|
|
|
|
|
|
|
An example of this object looks like:
|
|
|
|
|
|
2017-07-03 03:05:59 +03:00
|
|
|
|
<!-- eslint-skip -->
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-02-13 04:49:35 +02: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'
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
It is possible to modify this object, but such modifications will not be
|
2019-02-22 20:11:19 +01:00
|
|
|
|
reflected outside the Node.js process, or (unless explicitly requested)
|
|
|
|
|
to other [`Worker`][] threads.
|
|
|
|
|
In other words, the following example would not work:
|
2017-02-13 04:49:35 +02:00
|
|
|
|
|
2023-05-20 00:14:03 +02:00
|
|
|
|
```bash
|
|
|
|
|
node -e 'process.env.foo = "bar"' && echo $foo
|
2017-02-13 04:49:35 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
While the following will:
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { env } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
env.foo = 'bar';
|
|
|
|
|
console.log(env.foo);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { env } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
env.foo = 'bar';
|
|
|
|
|
console.log(env.foo);
|
2017-02-13 04:49:35 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Assigning a property on `process.env` will implicitly convert the value
|
2018-02-25 13:42:10 -08:00
|
|
|
|
to a string. **This behavior is deprecated.** Future versions of Node.js may
|
|
|
|
|
throw an error when the value is not a string, number, or boolean.
|
2017-02-13 04:49:35 +02:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { env } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
env.test = null;
|
|
|
|
|
console.log(env.test);
|
2017-02-13 04:49:35 +02:00
|
|
|
|
// => 'null'
|
2021-06-15 10:09:29 -07:00
|
|
|
|
env.test = undefined;
|
|
|
|
|
console.log(env.test);
|
|
|
|
|
// => 'undefined'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { env } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
env.test = null;
|
|
|
|
|
console.log(env.test);
|
|
|
|
|
// => 'null'
|
|
|
|
|
env.test = undefined;
|
|
|
|
|
console.log(env.test);
|
2017-02-13 04:49:35 +02:00
|
|
|
|
// => 'undefined'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Use `delete` to delete a property from `process.env`.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { env } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
env.TEST = 1;
|
|
|
|
|
delete env.TEST;
|
|
|
|
|
console.log(env.TEST);
|
|
|
|
|
// => undefined
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { env } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
env.TEST = 1;
|
|
|
|
|
delete env.TEST;
|
|
|
|
|
console.log(env.TEST);
|
2017-02-13 04:49:35 +02:00
|
|
|
|
// => undefined
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
On Windows operating systems, environment variables are case-insensitive.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { env } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
env.TEST = 1;
|
|
|
|
|
console.log(env.test);
|
|
|
|
|
// => 1
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { env } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
env.TEST = 1;
|
|
|
|
|
console.log(env.test);
|
2017-02-13 04:49:35 +02:00
|
|
|
|
// => 1
|
|
|
|
|
```
|
|
|
|
|
|
2019-02-22 20:11:19 +01:00
|
|
|
|
Unless explicitly specified when creating a [`Worker`][] instance,
|
|
|
|
|
each [`Worker`][] thread has its own copy of `process.env`, based on its
|
2022-05-17 21:04:51 +02:00
|
|
|
|
parent thread's `process.env`, or whatever was specified as the `env` option
|
2019-02-22 20:11:19 +01:00
|
|
|
|
to the [`Worker`][] constructor. Changes to `process.env` will not be visible
|
|
|
|
|
across [`Worker`][] threads, and only the main thread can make changes that
|
2023-08-06 00:26:19 +09:00
|
|
|
|
are visible to the operating system or to native add-ons. On Windows, a copy of
|
|
|
|
|
`process.env` on a [`Worker`][] instance operates in a case-sensitive manner
|
|
|
|
|
unlike the main thread.
|
2017-09-01 17:03:41 +02:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.execArgv`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.7.7
|
|
|
|
|
-->
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
* {string\[]}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-06-26 13:54:19 -07:00
|
|
|
|
The `process.execArgv` property returns the set of Node.js-specific command-line
|
2016-05-27 12:24:05 -07:00
|
|
|
|
options passed when the Node.js process was launched. These options do not
|
|
|
|
|
appear in the array returned by the [`process.argv`][] property, and do not
|
|
|
|
|
include the Node.js executable, the name of 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.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2023-05-20 00:14:03 +02:00
|
|
|
|
```bash
|
2024-04-09 22:42:05 +02:00
|
|
|
|
node --icu-data-dir=./foo --require ./bar.js script.js --version
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
Results in `process.execArgv`:
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2024-04-09 22:42:05 +02:00
|
|
|
|
```json
|
|
|
|
|
["--icu-data-dir=./foo", "--require", "./bar.js"]
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
And `process.argv`:
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2024-04-15 17:08:10 +02:00
|
|
|
|
<!-- eslint-disable @stylistic/js/semi -->
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
|
|
|
|
['/usr/local/bin/node', 'script.js', '--version']
|
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2020-10-12 12:50:42 +04:00
|
|
|
|
Refer to [`Worker` constructor][] for the detailed behavior of worker
|
|
|
|
|
threads with this property.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.execPath`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.100
|
|
|
|
|
-->
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* {string}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.execPath` property returns the absolute pathname of the executable
|
2020-10-10 23:15:12 +04:00
|
|
|
|
that started the Node.js process. Symbolic links, if any, are resolved.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2024-04-15 17:08:10 +02:00
|
|
|
|
<!-- eslint-disable @stylistic/js/semi -->
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-11-07 23:23:41 +02:00
|
|
|
|
```js
|
|
|
|
|
'/usr/local/bin/node'
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.exit([code])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.13
|
2022-10-20 03:40:22 +09:00
|
|
|
|
changes:
|
2023-04-03 11:30:30 +01:00
|
|
|
|
- version: v20.0.0
|
2022-10-20 03:40:22 +09:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/43716
|
|
|
|
|
description: Only accepts a code of type number, or of type string if it
|
|
|
|
|
represents an integer.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2022-10-20 03:40:22 +09:00
|
|
|
|
* `code` {integer|string|null|undefined} The exit code. For string type, only
|
|
|
|
|
integer strings (e.g.,'1') are allowed. **Default:** `0`.
|
2016-04-26 21:46:23 -07:00
|
|
|
|
|
2017-01-18 06:38:29 -08:00
|
|
|
|
The `process.exit()` method instructs Node.js to terminate the process
|
|
|
|
|
synchronously with an exit status of `code`. If `code` is omitted, exit uses
|
|
|
|
|
either the 'success' code `0` or the value of `process.exitCode` if it has been
|
2019-10-02 00:31:57 -04:00
|
|
|
|
set. Node.js will not terminate until all the [`'exit'`][] event listeners are
|
2017-01-18 06:38:29 -08:00
|
|
|
|
called.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
|
|
|
|
To exit with a 'failure' code:
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { exit } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { exit } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
exit(1);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-04-26 21:46:23 -07:00
|
|
|
|
The shell that executed Node.js should see the exit code as `1`.
|
|
|
|
|
|
2017-12-27 19:21:06 -08:00
|
|
|
|
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`.
|
2016-04-26 21:46:23 -07:00
|
|
|
|
|
|
|
|
|
In most situations, it is not actually necessary to call `process.exit()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
explicitly. The Node.js process will exit on its own _if there is no additional
|
|
|
|
|
work pending_ in the event loop. The `process.exitCode` property can be set to
|
2016-04-26 21:46:23 -07:00
|
|
|
|
tell the process which exit code to use when the process exits gracefully.
|
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
For instance, the following example illustrates a _misuse_ of the
|
2016-05-04 16:35:14 -07:00
|
|
|
|
`process.exit()` method that could lead to data printed to stdout being
|
2016-04-26 21:46:23 -07:00
|
|
|
|
truncated and lost:
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { exit } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-04-26 21:46:23 -07:00
|
|
|
|
// This is an example of what *not* to do:
|
|
|
|
|
if (someConditionNotMet()) {
|
|
|
|
|
printUsageToStdout();
|
2021-06-15 10:09:29 -07:00
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { exit } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
// This is an example of what *not* to do:
|
|
|
|
|
if (someConditionNotMet()) {
|
|
|
|
|
printUsageToStdout();
|
|
|
|
|
exit(1);
|
2016-04-26 21:46:23 -07:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The reason this is problematic is because writes to `process.stdout` in Node.js
|
2021-10-10 21:55:04 -07:00
|
|
|
|
are sometimes _asynchronous_ and may occur over multiple ticks of the Node.js
|
2016-07-14 12:24:10 +02:00
|
|
|
|
event loop. Calling `process.exit()`, however, forces the process to exit
|
2021-10-10 21:55:04 -07:00
|
|
|
|
_before_ those additional writes to `stdout` can be performed.
|
2016-04-26 21:46:23 -07:00
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
Rather than calling `process.exit()` directly, the code _should_ set the
|
2016-04-26 21:46:23 -07:00
|
|
|
|
`process.exitCode` and allow the process to exit naturally by avoiding
|
|
|
|
|
scheduling any additional work for the event loop:
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
// How to properly set the exit code while letting
|
|
|
|
|
// the process exit gracefully.
|
|
|
|
|
if (someConditionNotMet()) {
|
|
|
|
|
printUsageToStdout();
|
|
|
|
|
process.exitCode = 1;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-04-26 21:46:23 -07:00
|
|
|
|
// How to properly set the exit code while letting
|
|
|
|
|
// the process exit gracefully.
|
|
|
|
|
if (someConditionNotMet()) {
|
|
|
|
|
printUsageToStdout();
|
|
|
|
|
process.exitCode = 1;
|
|
|
|
|
}
|
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-04-26 21:46:23 -07:00
|
|
|
|
If it is necessary to terminate the Node.js process due to an error condition,
|
2021-10-10 21:55:04 -07:00
|
|
|
|
throwing an _uncaught_ error and allowing the process to terminate accordingly
|
2016-04-26 21:46:23 -07:00
|
|
|
|
is safer than calling `process.exit()`.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2017-09-01 17:03:41 +02:00
|
|
|
|
In [`Worker`][] threads, this function stops the current thread rather
|
|
|
|
|
than the current process.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.exitCode`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.11.8
|
2022-10-20 03:40:22 +09:00
|
|
|
|
changes:
|
2023-04-03 11:30:30 +01:00
|
|
|
|
- version: v20.0.0
|
2022-10-20 03:40:22 +09:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/43716
|
|
|
|
|
description: Only accepts a code of type number, or of type string if it
|
|
|
|
|
represents an integer.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2013-09-06 16:46:35 -07:00
|
|
|
|
|
2022-10-20 03:40:22 +09:00
|
|
|
|
* {integer|string|null|undefined} The exit code. For string type, only
|
|
|
|
|
integer strings (e.g.,'1') are allowed. **Default:** `undefined`.
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2013-09-06 16:46:35 -07:00
|
|
|
|
A number which will be the process exit code, when the process either
|
2015-11-27 18:30:32 -05:00
|
|
|
|
exits gracefully, or is exited via [`process.exit()`][] without specifying
|
2013-09-06 16:46:35 -07:00
|
|
|
|
a code.
|
|
|
|
|
|
2025-03-08 19:54:30 +00:00
|
|
|
|
The value of `process.exitCode` can be updated by either assigning a value to
|
|
|
|
|
`process.exitCode` or by passing an argument to [`process.exit()`][]:
|
|
|
|
|
|
|
|
|
|
```console
|
|
|
|
|
$ node -e 'process.exitCode = 9'; echo $?
|
|
|
|
|
9
|
|
|
|
|
$ node -e 'process.exit(42)'; echo $?
|
|
|
|
|
42
|
|
|
|
|
$ node -e 'process.exitCode = 9; process.exit(42)'; echo $?
|
|
|
|
|
42
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The value can also be set implicitly by Node.js when unrecoverable errors occur (e.g.
|
|
|
|
|
such as the encountering of an unsettled top-level await). However explicit
|
|
|
|
|
manipulations of the exit code always take precedence over implicit ones:
|
|
|
|
|
|
|
|
|
|
```console
|
|
|
|
|
$ node --input-type=module -e 'await new Promise(() => {})'; echo $?
|
|
|
|
|
13
|
|
|
|
|
$ node --input-type=module -e 'process.exitCode = 9; await new Promise(() => {})'; echo $?
|
|
|
|
|
9
|
|
|
|
|
```
|
2013-09-06 16:46:35 -07:00
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
## `process.features.cached_builtins`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v12.0.0
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build is caching builtin modules.
|
|
|
|
|
|
|
|
|
|
## `process.features.debug`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v0.5.5
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build is a debug build.
|
|
|
|
|
|
|
|
|
|
## `process.features.inspector`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v11.10.0
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build includes the inspector.
|
|
|
|
|
|
|
|
|
|
## `process.features.ipv6`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v0.5.3
|
2025-01-05 13:33:23 -05:00
|
|
|
|
deprecated:
|
|
|
|
|
- v23.4.0
|
|
|
|
|
- v22.13.0
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
> Stability: 0 - Deprecated. This property is always true, and any checks based on it are
|
|
|
|
|
> redundant.
|
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build includes support for IPv6.
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
Since all Node.js builds have IPv6 support, this value is always `true`.
|
|
|
|
|
|
2024-10-07 17:26:10 +02:00
|
|
|
|
## `process.features.require_module`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-10-10 00:12:22 +02:00
|
|
|
|
added:
|
|
|
|
|
- v23.0.0
|
|
|
|
|
- v22.10.0
|
2025-03-06 13:18:40 +01:00
|
|
|
|
- v20.19.0
|
2024-10-07 17:26:10 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build supports
|
|
|
|
|
[loading ECMAScript modules using `require()`][].
|
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
## `process.features.tls`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v0.5.3
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build includes support for TLS.
|
|
|
|
|
|
|
|
|
|
## `process.features.tls_alpn`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v4.8.0
|
2025-01-05 13:33:23 -05:00
|
|
|
|
deprecated:
|
|
|
|
|
- v23.4.0
|
|
|
|
|
- v22.13.0
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
|
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build includes support for ALPN in TLS.
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
In Node.js 11.0.0 and later versions, the OpenSSL dependencies feature unconditional ALPN support.
|
|
|
|
|
This value is therefore identical to that of `process.features.tls`.
|
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
## `process.features.tls_ocsp`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v0.11.13
|
2025-01-05 13:33:23 -05:00
|
|
|
|
deprecated:
|
|
|
|
|
- v23.4.0
|
|
|
|
|
- v22.13.0
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
|
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build includes support for OCSP in TLS.
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
In Node.js 11.0.0 and later versions, the OpenSSL dependencies feature unconditional OCSP support.
|
|
|
|
|
This value is therefore identical to that of `process.features.tls`.
|
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
## `process.features.tls_sni`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v0.5.3
|
2025-01-05 13:33:23 -05:00
|
|
|
|
deprecated:
|
|
|
|
|
- v23.4.0
|
|
|
|
|
- v22.13.0
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
|
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build includes support for SNI in TLS.
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
In Node.js 11.0.0 and later versions, the OpenSSL dependencies feature unconditional SNI support.
|
|
|
|
|
This value is therefore identical to that of `process.features.tls`.
|
|
|
|
|
|
2024-10-05 03:08:11 -04:00
|
|
|
|
## `process.features.typescript`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-10-10 00:12:22 +02:00
|
|
|
|
added:
|
|
|
|
|
- v23.0.0
|
|
|
|
|
- v22.10.0
|
2024-10-05 03:08:11 -04:00
|
|
|
|
-->
|
|
|
|
|
|
2025-04-03 14:15:40 +02:00
|
|
|
|
> Stability: 1.2 - Release candidate
|
2024-10-05 03:08:11 -04:00
|
|
|
|
|
|
|
|
|
* {boolean|string}
|
|
|
|
|
|
2024-12-26 19:46:06 +01:00
|
|
|
|
A value that is `"strip"` by default,
|
|
|
|
|
`"transform"` if Node.js is run with `--experimental-transform-types`, and `false` if
|
|
|
|
|
Node.js is run with `--no-experimental-strip-types`.
|
2024-10-05 03:08:11 -04:00
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
## `process.features.uv`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-09-17 16:49:52 +02:00
|
|
|
|
added: v0.5.3
|
2025-01-05 13:33:23 -05:00
|
|
|
|
deprecated:
|
|
|
|
|
- v23.4.0
|
|
|
|
|
- v22.13.0
|
2024-09-14 12:09:53 +02:00
|
|
|
|
-->
|
|
|
|
|
|
2024-11-27 04:19:16 +00:00
|
|
|
|
> Stability: 0 - Deprecated. This property is always true, and any checks based on it are
|
|
|
|
|
> redundant.
|
|
|
|
|
|
2024-09-14 12:09:53 +02:00
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
A boolean value that is `true` if the current Node.js build includes support for libuv.
|
2024-11-27 04:19:16 +00:00
|
|
|
|
|
|
|
|
|
Since it's not possible to build Node.js without libuv, this value is always `true`.
|
2024-09-14 12:09:53 +02:00
|
|
|
|
|
2024-07-11 14:57:20 -03:00
|
|
|
|
## `process.finalization.register(ref, callback)`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-07-16 12:09:50 +02:00
|
|
|
|
added: v22.5.0
|
2024-07-11 14:57:20 -03:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
> Stability: 1.1 - Active Development
|
|
|
|
|
|
|
|
|
|
* `ref` {Object | Function} The reference to the resource that is being tracked.
|
|
|
|
|
* `callback` {Function} The callback function to be called when the resource
|
|
|
|
|
is finalized.
|
|
|
|
|
* `ref` {Object | Function} The reference to the resource that is being tracked.
|
|
|
|
|
* `event` {string} The event that triggered the finalization. Defaults to 'exit'.
|
|
|
|
|
|
|
|
|
|
This function registers a callback to be called when the process emits the `exit`
|
|
|
|
|
event if the `ref` object was not garbage collected. If the object `ref` was garbage collected
|
|
|
|
|
before the `exit` event is emitted, the callback will be removed from the finalization registry,
|
|
|
|
|
and it will not be called on process exit.
|
|
|
|
|
|
|
|
|
|
Inside the callback you can release the resources allocated by the `ref` object.
|
|
|
|
|
Be aware that all limitations applied to the `beforeExit` event are also applied to the `callback` function,
|
|
|
|
|
this means that there is a possibility that the callback will not be called under special circumstances.
|
|
|
|
|
|
|
|
|
|
The idea of this function is to help you free up resources when the starts process exiting,
|
|
|
|
|
but also let the object be garbage collected if it is no longer being used.
|
|
|
|
|
|
|
|
|
|
Eg: you can register an object that contains a buffer, you want to make sure that buffer is released
|
|
|
|
|
when the process exit, but if the object is garbage collected before the process exit, we no longer
|
|
|
|
|
need to release the buffer, so in this case we just remove the callback from the finalization registry.
|
|
|
|
|
|
|
|
|
|
```cjs
|
|
|
|
|
const { finalization } = require('node:process');
|
|
|
|
|
|
|
|
|
|
// Please make sure that the function passed to finalization.register()
|
|
|
|
|
// does not create a closure around unnecessary objects.
|
|
|
|
|
function onFinalize(obj, event) {
|
|
|
|
|
// You can do whatever you want with the object
|
|
|
|
|
obj.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setup() {
|
|
|
|
|
// This object can be safely garbage collected,
|
|
|
|
|
// and the resulting shutdown function will not be called.
|
|
|
|
|
// There are no leaks.
|
|
|
|
|
const myDisposableObject = {
|
|
|
|
|
dispose() {
|
|
|
|
|
// Free your resources synchronously
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
finalization.register(myDisposableObject, onFinalize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setup();
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```mjs
|
|
|
|
|
import { finalization } from 'node:process';
|
|
|
|
|
|
|
|
|
|
// Please make sure that the function passed to finalization.register()
|
|
|
|
|
// does not create a closure around unnecessary objects.
|
|
|
|
|
function onFinalize(obj, event) {
|
|
|
|
|
// You can do whatever you want with the object
|
|
|
|
|
obj.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setup() {
|
|
|
|
|
// This object can be safely garbage collected,
|
|
|
|
|
// and the resulting shutdown function will not be called.
|
|
|
|
|
// There are no leaks.
|
|
|
|
|
const myDisposableObject = {
|
|
|
|
|
dispose() {
|
|
|
|
|
// Free your resources synchronously
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
finalization.register(myDisposableObject, onFinalize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setup();
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The code above relies on the following assumptions:
|
|
|
|
|
|
|
|
|
|
* arrow functions are avoided
|
|
|
|
|
* regular functions are recommended to be within the global context (root)
|
|
|
|
|
|
|
|
|
|
Regular functions _could_ reference the context where the `obj` lives, making the `obj` not garbage collectible.
|
|
|
|
|
|
|
|
|
|
Arrow functions will hold the previous context. Consider, for example:
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
class Test {
|
|
|
|
|
constructor() {
|
|
|
|
|
finalization.register(this, (ref) => ref.dispose());
|
|
|
|
|
|
2024-11-20 19:10:38 +09:00
|
|
|
|
// Even something like this is highly discouraged
|
2024-07-11 14:57:20 -03:00
|
|
|
|
// finalization.register(this, () => this.dispose());
|
2024-11-20 19:10:38 +09:00
|
|
|
|
}
|
|
|
|
|
dispose() {}
|
2024-07-11 14:57:20 -03:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
It is very unlikely (not impossible) that this object will be garbage collected,
|
|
|
|
|
but if it is not, `dispose` will be called when `process.exit` is called.
|
|
|
|
|
|
|
|
|
|
Be careful and avoid relying on this feature for the disposal of critical resources,
|
|
|
|
|
as it is not guaranteed that the callback will be called under all circumstances.
|
|
|
|
|
|
|
|
|
|
## `process.finalization.registerBeforeExit(ref, callback)`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-07-16 12:09:50 +02:00
|
|
|
|
added: v22.5.0
|
2024-07-11 14:57:20 -03:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
> Stability: 1.1 - Active Development
|
|
|
|
|
|
|
|
|
|
* `ref` {Object | Function} The reference
|
|
|
|
|
to the resource that is being tracked.
|
|
|
|
|
* `callback` {Function} The callback function to be called when the resource
|
|
|
|
|
is finalized.
|
|
|
|
|
* `ref` {Object | Function} The reference to the resource that is being tracked.
|
|
|
|
|
* `event` {string} The event that triggered the finalization. Defaults to 'beforeExit'.
|
|
|
|
|
|
|
|
|
|
This function behaves exactly like the `register`, except that the callback will be called
|
|
|
|
|
when the process emits the `beforeExit` event if `ref` object was not garbage collected.
|
|
|
|
|
|
|
|
|
|
Be aware that all limitations applied to the `beforeExit` event are also applied to the `callback` function,
|
|
|
|
|
this means that there is a possibility that the callback will not be called under special circumstances.
|
|
|
|
|
|
|
|
|
|
## `process.finalization.unregister(ref)`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-07-16 12:09:50 +02:00
|
|
|
|
added: v22.5.0
|
2024-07-11 14:57:20 -03:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
> Stability: 1.1 - Active Development
|
|
|
|
|
|
|
|
|
|
* `ref` {Object | Function} The reference
|
|
|
|
|
to the resource that was registered previously.
|
|
|
|
|
|
|
|
|
|
This function remove the register of the object from the finalization
|
|
|
|
|
registry, so the callback will not be called anymore.
|
|
|
|
|
|
|
|
|
|
```cjs
|
|
|
|
|
const { finalization } = require('node:process');
|
|
|
|
|
|
|
|
|
|
// Please make sure that the function passed to finalization.register()
|
|
|
|
|
// does not create a closure around unnecessary objects.
|
|
|
|
|
function onFinalize(obj, event) {
|
|
|
|
|
// You can do whatever you want with the object
|
|
|
|
|
obj.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setup() {
|
|
|
|
|
// This object can be safely garbage collected,
|
|
|
|
|
// and the resulting shutdown function will not be called.
|
|
|
|
|
// There are no leaks.
|
|
|
|
|
const myDisposableObject = {
|
|
|
|
|
dispose() {
|
|
|
|
|
// Free your resources synchronously
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
finalization.register(myDisposableObject, onFinalize);
|
|
|
|
|
|
|
|
|
|
// Do something
|
|
|
|
|
|
|
|
|
|
myDisposableObject.dispose();
|
|
|
|
|
finalization.unregister(myDisposableObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setup();
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```mjs
|
|
|
|
|
import { finalization } from 'node:process';
|
|
|
|
|
|
|
|
|
|
// Please make sure that the function passed to finalization.register()
|
|
|
|
|
// does not create a closure around unnecessary objects.
|
|
|
|
|
function onFinalize(obj, event) {
|
|
|
|
|
// You can do whatever you want with the object
|
|
|
|
|
obj.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setup() {
|
|
|
|
|
// This object can be safely garbage collected,
|
|
|
|
|
// and the resulting shutdown function will not be called.
|
|
|
|
|
// There are no leaks.
|
|
|
|
|
const myDisposableObject = {
|
|
|
|
|
dispose() {
|
|
|
|
|
// Free your resources synchronously
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Please make sure that the function passed to finalization.register()
|
|
|
|
|
// does not create a closure around unnecessary objects.
|
|
|
|
|
function onFinalize(obj, event) {
|
|
|
|
|
// You can do whatever you want with the object
|
|
|
|
|
obj.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
finalization.register(myDisposableObject, onFinalize);
|
|
|
|
|
|
|
|
|
|
// Do something
|
|
|
|
|
|
|
|
|
|
myDisposableObject.dispose();
|
|
|
|
|
finalization.unregister(myDisposableObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setup();
|
|
|
|
|
```
|
|
|
|
|
|
2021-12-14 19:39:08 +05:30
|
|
|
|
## `process.getActiveResourcesInfo()`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2022-02-01 00:34:51 -05:00
|
|
|
|
added:
|
|
|
|
|
- v17.3.0
|
|
|
|
|
- v16.14.0
|
2025-04-05 11:58:51 -07:00
|
|
|
|
changes:
|
|
|
|
|
- version: REPLACEME
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/57765
|
|
|
|
|
description: Change stability index for this feature from Experimental to Stable.
|
2021-12-14 19:39:08 +05:30
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* Returns: {string\[]}
|
|
|
|
|
|
|
|
|
|
The `process.getActiveResourcesInfo()` method returns an array of strings
|
|
|
|
|
containing the types of the active resources that are currently keeping the
|
|
|
|
|
event loop alive.
|
|
|
|
|
|
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { getActiveResourcesInfo } from 'node:process';
|
|
|
|
|
import { setTimeout } from 'node:timers';
|
2021-12-14 19:39:08 +05:30
|
|
|
|
|
|
|
|
|
console.log('Before:', getActiveResourcesInfo());
|
|
|
|
|
setTimeout(() => {}, 1000);
|
|
|
|
|
console.log('After:', getActiveResourcesInfo());
|
|
|
|
|
// Prints:
|
|
|
|
|
// Before: [ 'CloseReq', 'TTYWrap', 'TTYWrap', 'TTYWrap' ]
|
|
|
|
|
// After: [ 'CloseReq', 'TTYWrap', 'TTYWrap', 'TTYWrap', 'Timeout' ]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { getActiveResourcesInfo } = require('node:process');
|
|
|
|
|
const { setTimeout } = require('node:timers');
|
2021-12-14 19:39:08 +05:30
|
|
|
|
|
|
|
|
|
console.log('Before:', getActiveResourcesInfo());
|
|
|
|
|
setTimeout(() => {}, 1000);
|
|
|
|
|
console.log('After:', getActiveResourcesInfo());
|
|
|
|
|
// Prints:
|
|
|
|
|
// Before: [ 'TTYWrap', 'TTYWrap', 'TTYWrap' ]
|
|
|
|
|
// After: [ 'TTYWrap', 'TTYWrap', 'TTYWrap', 'Timeout' ]
|
|
|
|
|
```
|
|
|
|
|
|
2024-04-30 18:24:36 +02:00
|
|
|
|
## `process.getBuiltinModule(id)`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-07-19 15:32:30 +02:00
|
|
|
|
added:
|
|
|
|
|
- v22.3.0
|
|
|
|
|
- v20.16.0
|
2024-04-30 18:24:36 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* `id` {string} ID of the built-in module being requested.
|
|
|
|
|
* Returns: {Object|undefined}
|
|
|
|
|
|
|
|
|
|
`process.getBuiltinModule(id)` provides a way to load built-in modules
|
|
|
|
|
in a globally available function. ES Modules that need to support
|
|
|
|
|
other environments can use it to conditionally load a Node.js built-in
|
|
|
|
|
when it is run in Node.js, without having to deal with the resolution
|
|
|
|
|
error that can be thrown by `import` in a non-Node.js environment or
|
|
|
|
|
having to use dynamic `import()` which either turns the module into
|
|
|
|
|
an asynchronous module, or turns a synchronous API into an asynchronous one.
|
|
|
|
|
|
|
|
|
|
```mjs
|
|
|
|
|
if (globalThis.process?.getBuiltinModule) {
|
|
|
|
|
// Run in Node.js, use the Node.js fs module.
|
|
|
|
|
const fs = globalThis.process.getBuiltinModule('fs');
|
|
|
|
|
// If `require()` is needed to load user-modules, use createRequire()
|
|
|
|
|
const module = globalThis.process.getBuiltinModule('module');
|
|
|
|
|
const require = module.createRequire(import.meta.url);
|
|
|
|
|
const foo = require('foo');
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If `id` specifies a built-in module available in the current Node.js process,
|
|
|
|
|
`process.getBuiltinModule(id)` method returns the corresponding built-in
|
|
|
|
|
module. If `id` does not correspond to any built-in module, `undefined`
|
|
|
|
|
is returned.
|
|
|
|
|
|
|
|
|
|
`process.getBuiltinModule(id)` accepts built-in module IDs that are recognized
|
|
|
|
|
by [`module.isBuiltin(id)`][]. Some built-in modules must be loaded with the
|
|
|
|
|
`node:` prefix, see [built-in modules with mandatory `node:` prefix][].
|
|
|
|
|
The references returned by `process.getBuiltinModule(id)` always point to
|
|
|
|
|
the built-in module corresponding to `id` even if users modify
|
|
|
|
|
[`require.cache`][] so that `require(id)` returns something else.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.getegid()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v2.0.0
|
|
|
|
|
-->
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.getegid()` method returns the numerical effective group identity
|
|
|
|
|
of the Node.js process. (See getegid(2).)
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.getegid) {
|
|
|
|
|
console.log(`Current gid: ${process.getegid()}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (process.getegid) {
|
|
|
|
|
console.log(`Current gid: ${process.getegid()}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.geteuid()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v2.0.0
|
|
|
|
|
-->
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2016-11-11 21:29:01 +01:00
|
|
|
|
* Returns: {Object}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.geteuid()` method returns the numerical effective user identity of
|
|
|
|
|
the process. (See geteuid(2).)
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.geteuid) {
|
|
|
|
|
console.log(`Current uid: ${process.geteuid()}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (process.geteuid) {
|
|
|
|
|
console.log(`Current uid: ${process.geteuid()}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.getgid()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-11-11 21:29:01 +01:00
|
|
|
|
* Returns: {Object}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.getgid()` method returns the numerical group identity of the
|
|
|
|
|
process. (See getgid(2).)
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.getgid) {
|
|
|
|
|
console.log(`Current gid: ${process.getgid()}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (process.getgid) {
|
|
|
|
|
console.log(`Current gid: ${process.getgid()}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.getgroups()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.9.4
|
|
|
|
|
-->
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
* Returns: {integer\[]}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.getgroups()` method 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 11:24:19 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.getgroups) {
|
|
|
|
|
console.log(process.getgroups()); // [ 16, 21, 297 ]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2020-10-13 11:30:04 +04:00
|
|
|
|
if (process.getgroups) {
|
|
|
|
|
console.log(process.getgroups()); // [ 16, 21, 297 ]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2015-04-27 11:24:19 -05:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.getuid()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.28
|
|
|
|
|
-->
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* Returns: {integer}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.getuid()` method returns the numeric user identity of the process.
|
|
|
|
|
(See getuid(2).)
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.getuid) {
|
|
|
|
|
console.log(`Current uid: ${process.getuid()}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (process.getuid) {
|
|
|
|
|
console.log(`Current uid: ${process.getuid()}`);
|
|
|
|
|
}
|
|
|
|
|
```
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2025-01-07 07:24:20 +01:00
|
|
|
|
This function not available on Windows.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.hasUncaughtExceptionCaptureCallback()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-11-20 19:57:20 +01:00
|
|
|
|
<!-- YAML
|
2017-12-12 03:09:37 -05:00
|
|
|
|
added: v9.3.0
|
2017-11-20 19:57:20 +01:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* Returns: {boolean}
|
|
|
|
|
|
|
|
|
|
Indicates whether a callback has been set using
|
|
|
|
|
[`process.setUncaughtExceptionCaptureCallback()`][].
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.hrtime([time])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.7.6
|
|
|
|
|
-->
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2021-04-23 17:41:51 +02:00
|
|
|
|
> Stability: 3 - Legacy. Use [`process.hrtime.bigint()`][] instead.
|
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
* `time` {integer\[]} The result of a previous call to `process.hrtime()`
|
|
|
|
|
* Returns: {integer\[]}
|
2017-01-12 20:03:29 +08:00
|
|
|
|
|
2018-06-11 17:37:09 +08:00
|
|
|
|
This is the legacy version of [`process.hrtime.bigint()`][]
|
|
|
|
|
before `bigint` was introduced in JavaScript.
|
|
|
|
|
|
2017-01-12 20:03:29 +08:00
|
|
|
|
The `process.hrtime()` method returns the current high-resolution real time
|
2018-04-29 20:46:41 +03:00
|
|
|
|
in a `[seconds, nanoseconds]` tuple `Array`, where `nanoseconds` is the
|
2017-01-12 20:03:29 +08:00
|
|
|
|
remaining part of the real time that can't be represented in second precision.
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2017-01-12 20:03:29 +08:00
|
|
|
|
`time` is an optional parameter that must be the result of a previous
|
|
|
|
|
`process.hrtime()` call to diff with the current time. If the parameter
|
2018-04-29 20:46:41 +03:00
|
|
|
|
passed in is not a tuple `Array`, a `TypeError` will be thrown. Passing in a
|
2017-01-12 20:03:29 +08:00
|
|
|
|
user-defined array instead of the result of a previous call to
|
|
|
|
|
`process.hrtime()` will lead to undefined behavior.
|
|
|
|
|
|
|
|
|
|
These times are relative to an arbitrary time in the
|
|
|
|
|
past, and 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
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { hrtime } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const NS_PER_SEC = 1e9;
|
|
|
|
|
const time = hrtime();
|
|
|
|
|
// [ 1800216, 25 ]
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
const diff = hrtime(time);
|
|
|
|
|
// [ 1, 552 ]
|
|
|
|
|
|
|
|
|
|
console.log(`Benchmark took ${diff[0] * NS_PER_SEC + diff[1]} nanoseconds`);
|
|
|
|
|
// Benchmark took 1000000552 nanoseconds
|
|
|
|
|
}, 1000);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { hrtime } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2017-01-12 20:03:29 +08:00
|
|
|
|
const NS_PER_SEC = 1e9;
|
2021-06-15 10:09:29 -07:00
|
|
|
|
const time = hrtime();
|
2016-01-17 18:39:07 +01:00
|
|
|
|
// [ 1800216, 25 ]
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
setTimeout(() => {
|
2021-06-15 10:09:29 -07:00
|
|
|
|
const diff = hrtime(time);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
// [ 1, 552 ]
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2017-01-12 20:03:29 +08:00
|
|
|
|
console.log(`Benchmark took ${diff[0] * NS_PER_SEC + diff[1]} nanoseconds`);
|
2019-03-07 01:03:53 +01:00
|
|
|
|
// Benchmark took 1000000552 nanoseconds
|
2016-01-17 18:39:07 +01:00
|
|
|
|
}, 1000);
|
|
|
|
|
```
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.hrtime.bigint()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2018-06-11 17:37:09 +08:00
|
|
|
|
<!-- YAML
|
2018-07-17 16:33:02 +02:00
|
|
|
|
added: v10.7.0
|
2018-06-11 17:37:09 +08:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* Returns: {bigint}
|
|
|
|
|
|
|
|
|
|
The `bigint` version of the [`process.hrtime()`][] method returning the
|
2019-09-07 19:09:17 +02:00
|
|
|
|
current high-resolution real time in nanoseconds as a `bigint`.
|
2018-06-11 17:37:09 +08:00
|
|
|
|
|
|
|
|
|
Unlike [`process.hrtime()`][], it does not support an additional `time`
|
|
|
|
|
argument since the difference can just be computed directly
|
|
|
|
|
by subtraction of the two `bigint`s.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { hrtime } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const start = hrtime.bigint();
|
2018-06-11 17:37:09 +08:00
|
|
|
|
// 191051479007711n
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
2021-06-15 10:09:29 -07:00
|
|
|
|
const end = hrtime.bigint();
|
|
|
|
|
// 191052633396993n
|
|
|
|
|
|
|
|
|
|
console.log(`Benchmark took ${end - start} nanoseconds`);
|
|
|
|
|
// Benchmark took 1154389282 nanoseconds
|
|
|
|
|
}, 1000);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { hrtime } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const start = hrtime.bigint();
|
|
|
|
|
// 191051479007711n
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
const end = hrtime.bigint();
|
2018-06-11 17:37:09 +08:00
|
|
|
|
// 191052633396993n
|
|
|
|
|
|
|
|
|
|
console.log(`Benchmark took ${end - start} nanoseconds`);
|
|
|
|
|
// Benchmark took 1154389282 nanoseconds
|
|
|
|
|
}, 1000);
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.initgroups(user, extraGroup)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.9.4
|
|
|
|
|
-->
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
|
* `user` {string|number} The user name or numeric identifier.
|
2018-04-11 19:45:10 +03:00
|
|
|
|
* `extraGroup` {string|number} A group name or numeric identifier.
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.initgroups()` method reads the `/etc/group` file and initializes
|
|
|
|
|
the group access list, using all groups of which the user is a member. This is
|
|
|
|
|
a privileged operation that requires that the Node.js process either have `root`
|
|
|
|
|
access or the `CAP_SETGID` capability.
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2019-06-20 13:39:01 -06:00
|
|
|
|
Use care when dropping privileges:
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { getgroups, initgroups, setgid } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(getgroups()); // [ 0 ]
|
|
|
|
|
initgroups('nodeuser', 1000); // switch user
|
|
|
|
|
console.log(getgroups()); // [ 27, 30, 46, 1000, 0 ]
|
|
|
|
|
setgid(1000); // drop root gid
|
|
|
|
|
console.log(getgroups()); // [ 27, 30, 46, 1000 ]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { getgroups, initgroups, setgid } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(getgroups()); // [ 0 ]
|
|
|
|
|
initgroups('nodeuser', 1000); // switch user
|
|
|
|
|
console.log(getgroups()); // [ 27, 30, 46, 1000, 0 ]
|
|
|
|
|
setgid(1000); // drop root gid
|
|
|
|
|
console.log(getgroups()); // [ 27, 30, 46, 1000 ]
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2017-09-01 17:03:41 +02:00
|
|
|
|
This feature is not available in [`Worker`][] threads.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.kill(pid[, signal])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.0.6
|
|
|
|
|
-->
|
2012-12-04 06:36:23 +01:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
* `pid` {number} A process ID
|
2017-02-04 16:15:33 +01:00
|
|
|
|
* `signal` {string|number} The signal to send, either as a string or number.
|
2018-04-02 04:44:32 +03:00
|
|
|
|
**Default:** `'SIGTERM'`.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
|
|
|
|
The `process.kill()` method sends the `signal` to the process identified by
|
|
|
|
|
`pid`.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
Signal names are strings such as `'SIGINT'` or `'SIGHUP'`. See [Signal Events][]
|
|
|
|
|
and kill(2) for more information.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
This method will throw an error if the target `pid` does not exist. As a special
|
|
|
|
|
case, a signal 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.
|
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
Even though the name of this function is `process.kill()`, it is really just a
|
2018-04-02 08:38:48 +03:00
|
|
|
|
signal sender, like the `kill` system call. The signal sent may do something
|
2018-02-05 21:55:16 -08:00
|
|
|
|
other than kill the target process.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process, { kill } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
process.on('SIGHUP', () => {
|
|
|
|
|
console.log('Got SIGHUP signal.');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
console.log('Exiting.');
|
|
|
|
|
process.exit(0);
|
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
|
|
kill(process.pid, 'SIGHUP');
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
process.on('SIGHUP', () => {
|
|
|
|
|
console.log('Got SIGHUP signal.');
|
|
|
|
|
});
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
console.log('Exiting.');
|
|
|
|
|
process.exit(0);
|
|
|
|
|
}, 100);
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
process.kill(process.pid, 'SIGHUP');
|
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
When `SIGUSR1` is received by a Node.js process, Node.js will start the
|
2018-11-13 20:41:51 -08:00
|
|
|
|
debugger. See [Signal Events][].
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2024-01-23 13:46:26 -05:00
|
|
|
|
## `process.loadEnvFile(path)`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2024-03-25 19:33:26 +00:00
|
|
|
|
added:
|
|
|
|
|
- v21.7.0
|
|
|
|
|
- v20.12.0
|
2024-01-23 13:46:26 -05:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
> Stability: 1.1 - Active development
|
|
|
|
|
|
|
|
|
|
* `path` {string | URL | Buffer | undefined}. **Default:** `'./.env'`
|
|
|
|
|
|
|
|
|
|
Loads the `.env` file into `process.env`. Usage of `NODE_OPTIONS`
|
|
|
|
|
in the `.env` file will not have any effect on Node.js.
|
|
|
|
|
|
|
|
|
|
```cjs
|
|
|
|
|
const { loadEnvFile } = require('node:process');
|
|
|
|
|
loadEnvFile();
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```mjs
|
|
|
|
|
import { loadEnvFile } from 'node:process';
|
|
|
|
|
loadEnvFile();
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.mainModule`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.17
|
2020-03-10 17:16:08 +00:00
|
|
|
|
deprecated: v14.0.0
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2020-03-12 19:18:09 +01:00
|
|
|
|
> Stability: 0 - Deprecated: Use [`require.main`][] instead.
|
|
|
|
|
|
2018-03-24 13:42:20 +02:00
|
|
|
|
* {Object}
|
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.mainModule` property provides an alternative way of retrieving
|
|
|
|
|
[`require.main`][]. The difference is that if the main module changes at
|
|
|
|
|
runtime, [`require.main`][] may still refer to the original main module in
|
2016-12-02 16:42:19 -06:00
|
|
|
|
modules that were required before the change occurred. Generally, it's
|
2015-11-13 19:21:49 -08:00
|
|
|
|
safe to assume that the two refer to the same module.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
As with [`require.main`][], `process.mainModule` will be `undefined` if there
|
|
|
|
|
is no entry script.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.memoryUsage()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.16
|
2017-02-21 23:38:47 +01:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.9.0
|
|
|
|
|
- v12.17.0
|
2020-01-28 14:25:10 +00:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/31550
|
|
|
|
|
description: Added `arrayBuffers` to the returned object.
|
2017-02-21 23:38:47 +01:00
|
|
|
|
- version: v7.2.0
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/9587
|
|
|
|
|
description: Added `external` to the returned object.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-11-11 21:29:01 +01:00
|
|
|
|
* Returns: {Object}
|
2019-09-01 02:18:32 -04:00
|
|
|
|
* `rss` {integer}
|
|
|
|
|
* `heapTotal` {integer}
|
|
|
|
|
* `heapUsed` {integer}
|
|
|
|
|
* `external` {integer}
|
2020-01-28 14:25:10 +00:00
|
|
|
|
* `arrayBuffers` {integer}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
Returns an object describing the memory usage of the Node.js process measured in
|
|
|
|
|
bytes.
|
|
|
|
|
|
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { memoryUsage } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(memoryUsage());
|
|
|
|
|
// Prints:
|
|
|
|
|
// {
|
|
|
|
|
// rss: 4935680,
|
|
|
|
|
// heapTotal: 1826816,
|
|
|
|
|
// heapUsed: 650472,
|
|
|
|
|
// external: 49879,
|
|
|
|
|
// arrayBuffers: 9386
|
|
|
|
|
// }
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { memoryUsage } = require('node:process');
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
console.log(memoryUsage());
|
2021-01-03 06:32:51 -08:00
|
|
|
|
// Prints:
|
|
|
|
|
// {
|
|
|
|
|
// rss: 4935680,
|
|
|
|
|
// heapTotal: 1826816,
|
|
|
|
|
// heapUsed: 650472,
|
|
|
|
|
// external: 49879,
|
|
|
|
|
// arrayBuffers: 9386
|
|
|
|
|
// }
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2020-01-28 14:25:10 +00:00
|
|
|
|
* `heapTotal` and `heapUsed` refer to V8's memory usage.
|
|
|
|
|
* `external` refers to the memory usage of C++ objects bound to JavaScript
|
|
|
|
|
objects managed by V8.
|
|
|
|
|
* `rss`, Resident Set Size, is the amount of space occupied in the main
|
|
|
|
|
memory device (that is a subset of the total allocated memory) for the
|
|
|
|
|
process, including all C++ and JavaScript objects and code.
|
|
|
|
|
* `arrayBuffers` refers to memory allocated for `ArrayBuffer`s and
|
|
|
|
|
`SharedArrayBuffer`s, including all Node.js [`Buffer`][]s.
|
|
|
|
|
This is also included in the `external` value. When Node.js is used as an
|
|
|
|
|
embedded library, this value may be `0` because allocations for `ArrayBuffer`s
|
|
|
|
|
may not be tracked in that case.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2017-09-01 17:03:41 +02:00
|
|
|
|
When using [`Worker`][] threads, `rss` will be a value that is valid for the
|
|
|
|
|
entire process, while the other fields will only refer to the current thread.
|
|
|
|
|
|
2021-01-03 06:32:51 -08:00
|
|
|
|
The `process.memoryUsage()` method iterates over each page to gather
|
|
|
|
|
information about memory usage which might be slow depending on the
|
2020-12-29 15:36:41 +01:00
|
|
|
|
program memory allocations.
|
|
|
|
|
|
|
|
|
|
## `process.memoryUsage.rss()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2021-01-04 19:48:52 +01:00
|
|
|
|
<!-- YAML
|
2021-09-04 15:29:35 +02:00
|
|
|
|
added:
|
|
|
|
|
- v15.6.0
|
|
|
|
|
- v14.18.0
|
2021-01-04 19:48:52 +01:00
|
|
|
|
-->
|
2020-12-29 15:36:41 +01:00
|
|
|
|
|
|
|
|
|
* Returns: {integer}
|
|
|
|
|
|
|
|
|
|
The `process.memoryUsage.rss()` method returns an integer representing the
|
|
|
|
|
Resident Set Size (RSS) in bytes.
|
|
|
|
|
|
|
|
|
|
The Resident Set Size, is the amount of space occupied in the main
|
|
|
|
|
memory device (that is a subset of the total allocated memory) for the
|
|
|
|
|
process, including all C++ and JavaScript objects and code.
|
|
|
|
|
|
2021-01-03 06:32:51 -08:00
|
|
|
|
This is the same value as the `rss` property provided by `process.memoryUsage()`
|
|
|
|
|
but `process.memoryUsage.rss()` is faster.
|
2020-12-29 15:36:41 +01:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { memoryUsage } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(memoryUsage.rss());
|
|
|
|
|
// 35655680
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2023-04-01 00:37:56 +09:00
|
|
|
|
const { memoryUsage } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(memoryUsage.rss());
|
2020-12-29 15:36:41 +01:00
|
|
|
|
// 35655680
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.nextTick(callback[, ...args])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.26
|
2017-02-21 23:38:47 +01:00
|
|
|
|
changes:
|
2024-09-30 10:57:59 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v22.7.0
|
|
|
|
|
- v20.18.0
|
2024-08-12 18:18:50 +02:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/51280
|
|
|
|
|
description: Changed stability to Legacy.
|
2022-04-19, Version 18.0.0 (Current)
Notable Changes:
Deprecations and Removals:
- (SEMVER-MAJOR) fs: runtime deprecate string coercion in `fs.write`,
`fs.writeFileSync`
(Livia Medeiros) (https://github.com/nodejs/node/pull/42607)
- (SEMVER-MAJOR) dns: remove `dns.lookup` and `dnsPromises.lookup`
options type coercion
(Antoine du Hamel) (https://github.com/nodejs/node/pull/41431)
- (SEMVER-MAJOR) process: runtime deprecate multipleResolves
(Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/41896)
- (SEMVER-MAJOR) stream: remove thenable support (Robert Nagy)
(https://github.com/nodejs/node/pull/40773)
- (SEMVER-MAJOR) tls: move tls.parseCertString to end-of-life
(Tobias Nießen) (https://github.com/nodejs/node/pull/41479)
fetch (experimental):
An experimental fetch API is available on the global scope by default.
The implementation is based upon https://undici.nodejs.org/#/,
an HTTP/1.1 client written for Node.js by contributors to the project.
Through this addition, the following globals are made available: `fetch`
, `FormData`, `Headers`, `Request`, `Response`.
Disable this API with the `--no-experimental-fetch` command-line flag.
Contributed by Michaël Zasso in https://github.com/nodejs/node/pull/41811.
HTTP Timeouts:
`server.headersTimeout`, which limits the amount of time the parser will
wait to receive the complete HTTP headers, is now set to `60000` (60
seconds) by default.
`server.requestTimeout`, which sets the timeout value in milliseconds
for receiving the entire request from the client, is now set to `300000`
(5 minutes) by default.
If these timeouts expire, the server responds with status 408 without
forwarding the request to the request listener and then closes the
connection.
Both timeouts must be set to a non-zero value to protect against
potential Denial-of-Service attacks in case the server is deployed
without a reverse proxy in front.
Contributed by Paolo Insogna in https://github.com/nodejs/node/pull/41263.
Test Runner module (experimental):
The `node:test` module facilitates the creation of JavaScript tests that
report results in TAP format. This module is only available under the
`node:` scheme.
Contributed by Colin Ihrig in https://github.com/nodejs/node/pull/42325.
Toolchain and Compiler Upgrades:
- Prebuilt binaries for Linux are now built on Red Hat Enterprise Linux
(RHEL) 8 and are compatible with Linux distributions based on glibc
2.28 or later, for example, Debian 10, RHEL 8, Ubuntu 20.04.
- Prebuilt binaries for macOS now require macOS 10.15 or later.
- For AIX the minimum supported architecture has been raised from Power
7 to Power 8.
Prebuilt binaries for 32-bit Windows will initially not be available due
to issues building the V8 dependency in Node.js. We hope to restore
32-bit Windows binaries for Node.js 18 with a future V8 update.
Node.js does not support running on operating systems that are no longer
supported by their vendor. For operating systems where their vendor has
planned to end support earlier than April 2025, such as Windows 8.1
(January 2023) and Windows Server 2012 R2 (October 2023), support for
Node.js 18 will end at the earlier date.
Full details about the supported toolchains and compilers are documented
in the Node.js `BUILDING.md` file.
Contributed by Richard Lau in https://github.com/nodejs/node/pull/42292,
https://github.com/nodejs/node/pull/42604 and https://github.com/nodejs/node/pull/42659
, and Michaël Zasso in https://github.com/nodejs/node/pull/42105 and
https://github.com/nodejs/node/pull/42666.
V8 10.1:
The V8 engine is updated to version 10.1, which is part of Chromium 101.
Compared to the version included in Node.js 17.9.0, the following new
features are included:
- The `findLast` and `findLastIndex` array methods.
- Improvements to the `Intl.Locale` API.
- The `Intl.supportedValuesOf` function.
- Improved performance of class fields and private class methods (the
initialization of them is now as fast as ordinary property stores).
The data format returned by the serialization API (`v8.serialize(value)`)
has changed, and cannot be deserialized by earlier versions of Node.js.
On the other hand, it is still possible to deserialize the previous
format, as the API is backwards-compatible.
Contributed by Michaël Zasso in https://github.com/nodejs/node/pull/42657.
Web Streams API (experimental):
Node.js now exposes the experimental implementation of the Web Streams
API on the global scope. This means the following APIs are now globally
available:
- `ReadableStream`, `ReadableStreamDefaultReader`,
`ReadableStreamBYOBReader`, `ReadableStreamBYOBRequest`,
`ReadableByteStreamController`, `ReadableStreamDefaultController`,
`TransformStream`, `TransformStreamDefaultController`, `WritableStream`,
`WritableStreamDefaultWriter`, `WritableStreamDefaultController`,
`ByteLengthQueuingStrategy`, `CountQueuingStrategy`, `TextEncoderStream`,
`TextDecoderStream`, `CompressionStream`, `DecompressionStream`.
Contributed James Snell in https://github.com/nodejs/node/pull/39062,
and Antoine du Hamel in https://github.com/nodejs/node/pull/42225.
Other Notable Changes:
- (SEMVER-MAJOR) buffer: expose Blob as a global
(James M Snell) (https://github.com/nodejs/node/pull/41270)
- (SEMVER-MAJOR) child\_process: improve argument validation
(Rich Trott) (https://github.com/nodejs/node/pull/41305)
- doc: add RafaelGSS to collaborators
(RafaelGSS) (https://github.com/nodejs/node/pull/42718)
- (SEMVER-MAJOR) http: make TCP noDelay enabled by default
(Paolo Insogna) (https://github.com/nodejs/node/pull/42163)
- (SEMVER-MAJOR) net: make `server.address()` return an integer for
`family`
(Antoine du Hamel) (https://github.com/nodejs/node/pull/41431)
- (SEMVER-MAJOR) worker: expose BroadcastChannel as a global
(James M Snell) (https://github.com/nodejs/node/pull/41271)
- (SEMVER-MAJOR) worker: graduate BroadcastChannel to supported
(James M Snell) (https://github.com/nodejs/node/pull/41271)
Semver-Major Commits:
- (SEMVER-MAJOR) assert,util: compare RegExp.lastIndex while using deep
equal checks
(Ruben Bridgewater) (https://github.com/nodejs/node/pull/41020)
- (SEMVER-MAJOR) buffer: refactor `byteLength` to remove outdated
optimizations
(Rongjian Zhang) (https://github.com/nodejs/node/pull/38545)
- (SEMVER-MAJOR) buffer: expose Blob as a global
(James M Snell) (https://github.com/nodejs/node/pull/41270)
- (SEMVER-MAJOR) buffer: graduate Blob from experimental
(James M Snell) (https://github.com/nodejs/node/pull/41270)
- (SEMVER-MAJOR) build: make x86 Windows support temporarily
experimental
(Michaël Zasso) (https://github.com/nodejs/node/pull/42666)
- (SEMVER-MAJOR) build: bump macOS deployment target to 10.15
(Richard Lau) (https://github.com/nodejs/node/pull/42292)
- (SEMVER-MAJOR) build: downgrade Windows 8.1 and server 2012 R2 to
experimental
(Michaël Zasso) (https://github.com/nodejs/node/pull/42105)
- (SEMVER-MAJOR) child\_process: improve argument validation
(Rich Trott) (https://github.com/nodejs/node/pull/41305)
- (SEMVER-MAJOR) cluster: make `kill` to be just `process.kill`
(Bar Admoni) (https://github.com/nodejs/node/pull/34312)
- (SEMVER-MAJOR) crypto: cleanup validation
(Mohammed Keyvanzadeh) (https://github.com/nodejs/node/pull/39841)
- (SEMVER-MAJOR) crypto: prettify othername in PrintGeneralName
(Tobias Nießen) (https://github.com/nodejs/node/pull/42123)
- (SEMVER-MAJOR) crypto: fix X509Certificate toLegacyObject
(Tobias Nießen) (https://github.com/nodejs/node/pull/42124)
- (SEMVER-MAJOR) crypto: use RFC2253 format in PrintGeneralName
(Tobias Nießen) (https://github.com/nodejs/node/pull/42002)
- (SEMVER-MAJOR) crypto: change default check(Host|Email) behavior
(Tobias Nießen) (https://github.com/nodejs/node/pull/41600)
- (SEMVER-MAJOR) deps: V8: cherry-pick semver-major commits from 10.2
(Michaël Zasso) (https://github.com/nodejs/node/pull/42657)
- (SEMVER-MAJOR) deps: update V8 to 10.1.124.6
(Michaël Zasso) (https://github.com/nodejs/node/pull/42657)
- (SEMVER-MAJOR) deps: update V8 to 9.8.177.9
(Michaël Zasso) (https://github.com/nodejs/node/pull/41610)
- (SEMVER-MAJOR) deps: update V8 to 9.7.106.18
(Michaël Zasso) (https://github.com/nodejs/node/pull/40907)
- (SEMVER-MAJOR) dns: remove `dns.lookup` and `dnsPromises.lookup`
options type coercion
(Antoine du Hamel) (https://github.com/nodejs/node/pull/41431)
- (SEMVER-MAJOR) doc: update minimum glibc requirements for Linux
(Richard Lau) (https://github.com/nodejs/node/pull/42659)
- (SEMVER-MAJOR) doc: update AIX minimum supported arch
(Richard Lau) (https://github.com/nodejs/node/pull/42604)
- (SEMVER-MAJOR) fs: runtime deprecate string coercion in `fs.write`,
`fs.writeFileSync`
(Livia Medeiros) (https://github.com/nodejs/node/pull/42607)
- (SEMVER-MAJOR) http: refactor headersTimeout and requestTimeout logic
(Paolo Insogna) (https://github.com/nodejs/node/pull/41263)
- (SEMVER-MAJOR) http: make TCP noDelay enabled by default
(Paolo Insogna) (https://github.com/nodejs/node/pull/42163)
- (SEMVER-MAJOR) lib: enable fetch by default
(Michaël Zasso) (https://github.com/nodejs/node/pull/41811)
- (SEMVER-MAJOR) lib: replace validator and error
(Mohammed Keyvanzadeh) (https://github.com/nodejs/node/pull/41678)
- (SEMVER-MAJOR) module,repl: support 'node:'-only core modules
(Colin Ihrig) (https://github.com/nodejs/node/pull/42325)
- (SEMVER-MAJOR) net: make `server.address()` return an integer for
`family`
(Antoine du Hamel) (https://github.com/nodejs/node/pull/41431)
- (SEMVER-MAJOR) process: disallow some uses of Object.defineProperty()
on process.env
(Himself65) (https://github.com/nodejs/node/pull/28006)
- (SEMVER-MAJOR) process: runtime deprecate multipleResolves
(Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/41896)
- (SEMVER-MAJOR) readline: fix question still called after closed
(Xuguang Mei) (https://github.com/nodejs/node/pull/42464)
- (SEMVER-MAJOR) stream: remove thenable support
(Robert Nagy) (https://github.com/nodejs/node/pull/40773)
- (SEMVER-MAJOR) stream: expose web streams globals, remove runtime
experimental warning
(Antoine du Hamel) (https://github.com/nodejs/node/pull/42225)
- (SEMVER-MAJOR) stream: need to cleanup event listeners if last stream
is readable
(Xuguang Mei) (https://github.com/nodejs/node/pull/41954)
- (SEMVER-MAJOR) stream: revert revert `map` spec compliance
(Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/41933)
- (SEMVER-MAJOR) stream: throw invalid arg type from End Of Stream
(Jithil P Ponnan) (https://github.com/nodejs/node/pull/41766)
- (SEMVER-MAJOR) stream: don't emit finish after destroy
(Robert Nagy) (https://github.com/nodejs/node/pull/40852)
- (SEMVER-MAJOR) stream: add errored and closed props
(Robert Nagy) (https://github.com/nodejs/node/pull/40696)
- (SEMVER-MAJOR) test: add initial test module
(Colin Ihrig) (https://github.com/nodejs/node/pull/42325)
- (SEMVER-MAJOR) timers: refactor internal classes to ES2015 syntax
(Rabbit) (https://github.com/nodejs/node/pull/37408)
- (SEMVER-MAJOR) tls: represent registeredID numerically always
(Tobias Nießen) (https://github.com/nodejs/node/pull/41561)
- (SEMVER-MAJOR) tls: move tls.parseCertString to end-of-life
(Tobias Nießen) (https://github.com/nodejs/node/pull/41479)
- (SEMVER-MAJOR) url: throw on NULL in IPv6 hostname
(Rich Trott) (https://github.com/nodejs/node/pull/42313)
- (SEMVER-MAJOR) v8: make v8.writeHeapSnapshot() error codes consistent
(Darshan Sen) (https://github.com/nodejs/node/pull/42577)
- (SEMVER-MAJOR) v8: make writeHeapSnapshot throw if fopen fails
(Antonio Román) (https://github.com/nodejs/node/pull/41373)
- (SEMVER-MAJOR) worker: expose BroadcastChannel as a global
(James M Snell) (https://github.com/nodejs/node/pull/41271)
- (SEMVER-MAJOR) worker: graduate BroadcastChannel to supported
(James M Snell) (https://github.com/nodejs/node/pull/41271)
PR-URL: https://github.com/nodejs/node/pull/42262
2022-03-08 01:39:47 +00:00
|
|
|
|
- version: v18.0.0
|
2022-01-24 19:39:16 +03:30
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/41678
|
|
|
|
|
description: Passing an invalid callback to the `callback` argument
|
|
|
|
|
now throws `ERR_INVALID_ARG_TYPE` instead of
|
|
|
|
|
`ERR_INVALID_CALLBACK`.
|
2017-02-21 23:38:47 +01:00
|
|
|
|
- version: v1.8.1
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/1077
|
|
|
|
|
description: Additional arguments after `callback` are now supported.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2024-08-12 18:18:50 +02:00
|
|
|
|
> Stability: 3 - Legacy: Use [`queueMicrotask()`][] instead.
|
|
|
|
|
|
2013-07-13 15:20:27 -07:00
|
|
|
|
* `callback` {Function}
|
2016-08-29 22:35:03 -07:00
|
|
|
|
* `...args` {any} Additional arguments to pass when invoking the `callback`
|
2013-07-13 15:20:27 -07:00
|
|
|
|
|
2018-09-13 07:35:15 -07:00
|
|
|
|
`process.nextTick()` adds `callback` to the "next tick queue". This queue is
|
|
|
|
|
fully drained after the current operation on the JavaScript stack runs to
|
2019-01-21 12:08:35 -08:00
|
|
|
|
completion and before the event loop is allowed to continue. It's possible to
|
|
|
|
|
create an infinite loop if one were to recursively call `process.nextTick()`.
|
2019-10-02 00:31:57 -04:00
|
|
|
|
See the [Event Loop][] guide for more background.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { nextTick } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log('start');
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
console.log('nextTick callback');
|
|
|
|
|
});
|
|
|
|
|
console.log('scheduled');
|
|
|
|
|
// Output:
|
|
|
|
|
// start
|
|
|
|
|
// scheduled
|
|
|
|
|
// nextTick callback
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { nextTick } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
console.log('start');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
nextTick(() => {
|
2016-01-17 18:39:07 +01:00
|
|
|
|
console.log('nextTick callback');
|
|
|
|
|
});
|
|
|
|
|
console.log('scheduled');
|
|
|
|
|
// Output:
|
|
|
|
|
// start
|
|
|
|
|
// scheduled
|
|
|
|
|
// nextTick callback
|
|
|
|
|
```
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
This is important when developing APIs in order to give users the opportunity
|
2021-10-10 21:55:04 -07:00
|
|
|
|
to assign event handlers _after_ an object has been constructed but before any
|
2016-05-27 12:24:05 -07:00
|
|
|
|
I/O has occurred:
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { nextTick } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
function MyThing(options) {
|
|
|
|
|
this.setupOptions(options);
|
|
|
|
|
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
this.startDoingStuff();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const thing = new MyThing();
|
|
|
|
|
thing.getReadyForStuff();
|
|
|
|
|
|
|
|
|
|
// thing.startDoingStuff() gets called now, not before.
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { nextTick } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
function MyThing(options) {
|
|
|
|
|
this.setupOptions(options);
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
nextTick(() => {
|
2016-01-17 18:39:07 +01:00
|
|
|
|
this.startDoingStuff();
|
2016-01-21 21:21:16 +05:00
|
|
|
|
});
|
2016-01-17 18:39:07 +01:00
|
|
|
|
}
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2017-04-13 04:31:39 +03:00
|
|
|
|
const thing = new MyThing();
|
2016-01-17 18:39:07 +01:00
|
|
|
|
thing.getReadyForStuff();
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
// thing.startDoingStuff() gets called now, not before.
|
|
|
|
|
```
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
|
|
|
|
It is very important for APIs to be either 100% synchronous or 100%
|
2018-04-02 08:38:48 +03:00
|
|
|
|
asynchronous. Consider this example:
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
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-13 18:11:38 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
fs.stat('file', cb);
|
|
|
|
|
}
|
|
|
|
|
```
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
This API is hazardous because in the following case:
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
2017-04-08 16:22:25 +03:00
|
|
|
|
const maybeTrue = Math.random() > 0.5;
|
|
|
|
|
|
|
|
|
|
maybeSync(maybeTrue, () => {
|
2016-01-17 18:39:07 +01:00
|
|
|
|
foo();
|
|
|
|
|
});
|
2017-04-08 16:22:25 +03:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
bar();
|
|
|
|
|
```
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
It is not clear whether `foo()` or `bar()` will be called first.
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The following approach is much better:
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { nextTick } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
function definitelyAsync(arg, cb) {
|
|
|
|
|
if (arg) {
|
|
|
|
|
nextTick(cb);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fs.stat('file', cb);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { nextTick } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
function definitelyAsync(arg, cb) {
|
|
|
|
|
if (arg) {
|
2021-06-15 10:09:29 -07:00
|
|
|
|
nextTick(cb);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
fs.stat('file', cb);
|
|
|
|
|
}
|
|
|
|
|
```
|
2012-07-13 18:11:38 -07:00
|
|
|
|
|
2021-02-22 15:03:09 -08:00
|
|
|
|
### When to use `queueMicrotask()` vs. `process.nextTick()`
|
|
|
|
|
|
2025-01-21 17:16:17 +00:00
|
|
|
|
The [`queueMicrotask()`][] API is an alternative to `process.nextTick()` that instead of using the
|
|
|
|
|
"next tick queue" defers execution of a function using the same microtask queue used to execute the
|
|
|
|
|
then, catch, and finally handlers of resolved promises.
|
|
|
|
|
|
|
|
|
|
Within Node.js, every time the "next tick queue" is drained, the microtask queue
|
2021-02-22 15:03:09 -08:00
|
|
|
|
is drained immediately after.
|
|
|
|
|
|
2025-01-21 17:16:17 +00:00
|
|
|
|
So in CJS modules `process.nextTick()` callbacks are always run before `queueMicrotask()` ones.
|
|
|
|
|
However since ESM modules are processed already as part of the microtask queue, there
|
|
|
|
|
`queueMicrotask()` callbacks are always exectued before `process.nextTick()` ones since Node.js
|
|
|
|
|
is already in the process of draining the microtask queue.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { nextTick } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2025-01-21 17:16:17 +00:00
|
|
|
|
Promise.resolve().then(() => console.log('resolve'));
|
|
|
|
|
queueMicrotask(() => console.log('microtask'));
|
|
|
|
|
nextTick(() => console.log('nextTick'));
|
2021-06-15 10:09:29 -07:00
|
|
|
|
// Output:
|
2025-01-21 17:16:17 +00:00
|
|
|
|
// resolve
|
|
|
|
|
// microtask
|
|
|
|
|
// nextTick
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { nextTick } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2025-01-21 17:16:17 +00:00
|
|
|
|
Promise.resolve().then(() => console.log('resolve'));
|
|
|
|
|
queueMicrotask(() => console.log('microtask'));
|
|
|
|
|
nextTick(() => console.log('nextTick'));
|
2021-02-22 15:03:09 -08:00
|
|
|
|
// Output:
|
2025-01-21 17:16:17 +00:00
|
|
|
|
// nextTick
|
|
|
|
|
// resolve
|
|
|
|
|
// microtask
|
2021-02-22 15:03:09 -08:00
|
|
|
|
```
|
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
For _most_ userland use cases, the `queueMicrotask()` API provides a portable
|
2021-02-22 15:03:09 -08:00
|
|
|
|
and reliable mechanism for deferring execution that works across multiple
|
|
|
|
|
JavaScript platform environments and should be favored over `process.nextTick()`.
|
|
|
|
|
In simple scenarios, `queueMicrotask()` can be a drop-in replacement for
|
|
|
|
|
`process.nextTick()`.
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
console.log('start');
|
|
|
|
|
queueMicrotask(() => {
|
|
|
|
|
console.log('microtask callback');
|
|
|
|
|
});
|
|
|
|
|
console.log('scheduled');
|
|
|
|
|
// Output:
|
|
|
|
|
// start
|
|
|
|
|
// scheduled
|
|
|
|
|
// microtask callback
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
One note-worthy difference between the two APIs is that `process.nextTick()`
|
|
|
|
|
allows specifying additional values that will be passed as arguments to the
|
|
|
|
|
deferred function when it is called. Achieving the same result with
|
|
|
|
|
`queueMicrotask()` requires using either a closure or a bound function:
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
function deferred(a, b) {
|
|
|
|
|
console.log('microtask', a + b);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
console.log('start');
|
|
|
|
|
queueMicrotask(deferred.bind(undefined, 1, 2));
|
|
|
|
|
console.log('scheduled');
|
|
|
|
|
// Output:
|
|
|
|
|
// start
|
|
|
|
|
// scheduled
|
|
|
|
|
// microtask 3
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
There are minor differences in the way errors raised from within the next tick
|
|
|
|
|
queue and microtask queue are handled. Errors thrown within a queued microtask
|
|
|
|
|
callback should be handled within the queued callback when possible. If they are
|
|
|
|
|
not, the `process.on('uncaughtException')` event handler can be used to capture
|
|
|
|
|
and handle the errors.
|
|
|
|
|
|
|
|
|
|
When in doubt, unless the specific capabilities of `process.nextTick()` are
|
|
|
|
|
needed, use `queueMicrotask()`.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.noDeprecation`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-10-26 19:53:47 -04:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.8.0
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
The `process.noDeprecation` property indicates whether the `--no-deprecation`
|
|
|
|
|
flag is set on the current Node.js process. See the documentation for
|
2018-04-09 19:30:22 +03:00
|
|
|
|
the [`'warning'` event][process_warning] and the
|
|
|
|
|
[`emitWarning()` method][process_emit_warning] for more information about this
|
2017-10-26 19:53:47 -04:00
|
|
|
|
flag's behavior.
|
|
|
|
|
|
2023-02-23 15:11:51 -03:00
|
|
|
|
## `process.permission`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2023-04-03 11:30:30 +01:00
|
|
|
|
added: v20.0.0
|
2023-02-23 15:11:51 -03:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {Object}
|
|
|
|
|
|
2024-12-12 09:11:58 -03:00
|
|
|
|
This API is available through the [`--permission`][] flag.
|
2023-02-23 15:11:51 -03:00
|
|
|
|
|
|
|
|
|
`process.permission` is an object whose methods are used to manage permissions
|
|
|
|
|
for the current process. Additional documentation is available in the
|
|
|
|
|
[Permission Model][].
|
|
|
|
|
|
|
|
|
|
### `process.permission.has(scope[, reference])`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2023-04-03 11:30:30 +01:00
|
|
|
|
added: v20.0.0
|
2023-02-23 15:11:51 -03:00
|
|
|
|
-->
|
|
|
|
|
|
2023-05-07 19:08:21 +09:00
|
|
|
|
* `scope` {string}
|
2023-02-23 15:11:51 -03:00
|
|
|
|
* `reference` {string}
|
|
|
|
|
* Returns: {boolean}
|
|
|
|
|
|
|
|
|
|
Verifies that the process is able to access the given scope and reference.
|
|
|
|
|
If no reference is provided, a global scope is assumed, for instance,
|
|
|
|
|
`process.permission.has('fs.read')` will check if the process has ALL
|
|
|
|
|
file system read permissions.
|
|
|
|
|
|
|
|
|
|
The reference has a meaning based on the provided scope. For example,
|
|
|
|
|
the reference when the scope is File System means files and folders.
|
|
|
|
|
|
|
|
|
|
The available scopes are:
|
|
|
|
|
|
|
|
|
|
* `fs` - All File System
|
|
|
|
|
* `fs.read` - File System read operations
|
|
|
|
|
* `fs.write` - File System write operations
|
2023-05-07 19:08:21 +09:00
|
|
|
|
* `child` - Child process spawning operations
|
|
|
|
|
* `worker` - Worker thread spawning operation
|
2023-02-23 15:11:51 -03:00
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
// Check if the process has permission to read the README file
|
|
|
|
|
process.permission.has('fs.read', './README.md');
|
|
|
|
|
// Check if the process has read permission operations
|
|
|
|
|
process.permission.has('fs.read');
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.pid`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.15
|
|
|
|
|
-->
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* {integer}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.pid` property returns the PID of the process.
|
2010-10-28 23:18:16 +11:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { pid } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`This process is pid ${pid}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { pid } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`This process is pid ${pid}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2011-03-04 17:57:54 -06:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.platform`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.16
|
|
|
|
|
-->
|
2011-03-04 17:57:54 -06:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* {string}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.platform` property returns a string identifying the operating
|
2022-01-28 05:42:01 +05:30
|
|
|
|
system platform for which the Node.js binary was compiled.
|
2018-01-09 19:15:59 +08:00
|
|
|
|
|
|
|
|
|
Currently possible values are:
|
|
|
|
|
|
|
|
|
|
* `'aix'`
|
|
|
|
|
* `'darwin'`
|
|
|
|
|
* `'freebsd'`
|
|
|
|
|
* `'linux'`
|
|
|
|
|
* `'openbsd'`
|
|
|
|
|
* `'sunos'`
|
|
|
|
|
* `'win32'`
|
2012-03-05 08:51:58 -08:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { platform } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`This platform is ${platform}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { platform } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`This platform is ${platform}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2012-03-05 08:51:58 -08:00
|
|
|
|
|
2018-01-09 19:15:59 +08:00
|
|
|
|
The value `'android'` may also be returned if the Node.js is built on the
|
|
|
|
|
Android operating system. However, Android support in Node.js
|
2018-02-26 17:06:13 +02:00
|
|
|
|
[is experimental][Android building].
|
2018-01-09 19:15:59 +08:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.ppid`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-10-30 16:14:15 -04:00
|
|
|
|
<!-- YAML
|
2019-09-29 20:49:32 +02:00
|
|
|
|
added:
|
|
|
|
|
- v9.2.0
|
|
|
|
|
- v8.10.0
|
|
|
|
|
- v6.13.0
|
2017-10-30 16:14:15 -04:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {integer}
|
|
|
|
|
|
2020-10-10 22:42:37 +04:00
|
|
|
|
The `process.ppid` property returns the PID of the parent of the
|
|
|
|
|
current process.
|
2017-10-30 16:14:15 -04:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { ppid } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`The parent process is pid ${ppid}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { ppid } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`The parent process is pid ${ppid}`);
|
2017-10-30 16:14:15 -04:00
|
|
|
|
```
|
|
|
|
|
|
2024-12-28 16:06:52 -08:00
|
|
|
|
## `process.ref(maybeRefable)`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2025-02-06 11:04:25 +01:00
|
|
|
|
added:
|
|
|
|
|
- v23.6.0
|
|
|
|
|
- v22.14.0
|
2024-12-28 16:06:52 -08:00
|
|
|
|
-->
|
|
|
|
|
|
2025-01-10 15:40:28 +01:00
|
|
|
|
> Stability: 1 - Experimental
|
|
|
|
|
|
2024-12-28 16:06:52 -08:00
|
|
|
|
* `maybeRefable` {any} An object that may be "refable".
|
|
|
|
|
|
|
|
|
|
An object is "refable" if it implements the Node.js "Refable protocol".
|
2025-01-10 15:40:28 +01:00
|
|
|
|
Specifically, this means that the object implements the `Symbol.for('nodejs.ref')`
|
|
|
|
|
and `Symbol.for('nodejs.unref')` methods. "Ref'd" objects will keep the Node.js
|
2024-12-28 16:06:52 -08:00
|
|
|
|
event loop alive, while "unref'd" objects will not. Historically, this was
|
|
|
|
|
implemented by using `ref()` and `unref()` methods directly on the objects.
|
|
|
|
|
This pattern, however, is being deprecated in favor of the "Refable protocol"
|
|
|
|
|
in order to better support Web Platform API types whose APIs cannot be modified
|
|
|
|
|
to add `ref()` and `unref()` methods but still need to support that behavior.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.release`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v3.0.0
|
2017-02-21 23:38:47 +01:00
|
|
|
|
changes:
|
|
|
|
|
- version: v4.2.0
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/3212
|
|
|
|
|
description: The `lts` property is now supported.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2012-03-05 08:51:58 -08:00
|
|
|
|
|
2018-03-24 13:42:20 +02:00
|
|
|
|
* {Object}
|
|
|
|
|
|
2018-04-29 20:46:41 +03:00
|
|
|
|
The `process.release` property returns an `Object` containing metadata related
|
|
|
|
|
to the current release, including URLs for the source tarball and headers-only
|
2016-05-27 12:24:05 -07:00
|
|
|
|
tarball.
|
2012-03-05 08:51:58 -08:00
|
|
|
|
|
2015-11-05 11:00:46 -05:00
|
|
|
|
`process.release` contains the following properties:
|
2012-03-05 08:51:58 -08:00
|
|
|
|
|
2020-10-12 23:29:16 +05:30
|
|
|
|
* `name` {string} A value that will always be `'node'`.
|
2017-02-04 16:15:33 +01:00
|
|
|
|
* `sourceUrl` {string} an absolute URL pointing to a _`.tar.gz`_ file containing
|
2016-05-27 12:24:05 -07:00
|
|
|
|
the source code of the current release.
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* `headersUrl`{string} an absolute URL pointing to a _`.tar.gz`_ file containing
|
2016-05-27 12:24:05 -07:00
|
|
|
|
only the source header files for the current release. This file is
|
|
|
|
|
significantly smaller than the full source file and can be used for compiling
|
|
|
|
|
Node.js native add-ons.
|
2022-10-25 16:42:18 +02:00
|
|
|
|
* `libUrl` {string|undefined} an absolute URL pointing to a _`node.lib`_ file
|
|
|
|
|
matching the architecture and version of the current release. This file is
|
|
|
|
|
used for compiling Node.js native add-ons. _This property is only present on
|
|
|
|
|
Windows builds of Node.js and will be missing on all other platforms._
|
|
|
|
|
* `lts` {string|undefined} a string label identifying the [LTS][] label for this
|
|
|
|
|
release. This property only exists for LTS releases and is `undefined` for all
|
|
|
|
|
other release types, including _Current_ releases. Valid values include the
|
|
|
|
|
LTS Release code names (including those that are no longer supported).
|
|
|
|
|
* `'Fermium'` for the 14.x LTS line beginning with 14.15.0.
|
|
|
|
|
* `'Gallium'` for the 16.x LTS line beginning with 16.13.0.
|
|
|
|
|
* `'Hydrogen'` for the 18.x LTS line beginning with 18.12.0.
|
2021-10-30 15:40:34 -07:00
|
|
|
|
For other LTS Release code names, see [Node.js Changelog Archive](https://github.com/nodejs/node/blob/HEAD/doc/changelogs/CHANGELOG_ARCHIVE.md)
|
2012-03-05 08:51:58 -08:00
|
|
|
|
|
2017-07-03 03:05:59 +03:00
|
|
|
|
<!-- eslint-skip -->
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```js
|
2016-05-27 12:24:05 -07:00
|
|
|
|
{
|
|
|
|
|
name: 'node',
|
2022-10-25 16:42:18 +02:00
|
|
|
|
lts: 'Hydrogen',
|
|
|
|
|
sourceUrl: 'https://nodejs.org/download/release/v18.12.0/node-v18.12.0.tar.gz',
|
|
|
|
|
headersUrl: 'https://nodejs.org/download/release/v18.12.0/node-v18.12.0-headers.tar.gz',
|
|
|
|
|
libUrl: 'https://nodejs.org/download/release/v18.12.0/win-x64/node.lib'
|
2016-05-27 12:24:05 -07:00
|
|
|
|
}
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2012-06-06 15:05:18 -04:00
|
|
|
|
|
2015-11-05 11:00:46 -05:00
|
|
|
|
In custom builds from non-release versions of the source tree, only the
|
2018-04-16 16:51:56 +10:00
|
|
|
|
`name` property may be present. The additional properties should not be
|
|
|
|
|
relied upon to exist.
|
2014-06-21 17:09:04 -07:00
|
|
|
|
|
2025-01-07 07:24:20 +01:00
|
|
|
|
## `process.execve(file[, args[, env]])`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2025-04-11 17:38:28 -03:00
|
|
|
|
added:
|
|
|
|
|
- v23.11.0
|
|
|
|
|
- v22.15.0
|
2025-01-07 07:24:20 +01:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
> Stability: 1 - Experimental
|
|
|
|
|
|
|
|
|
|
* `file` {string} The name or path of the executable file to run.
|
|
|
|
|
* `args` {string\[]} List of string arguments. No argument can contain a null-byte (`\u0000`).
|
|
|
|
|
* `env` {Object} Environment key-value pairs.
|
|
|
|
|
No key or value can contain a null-byte (`\u0000`).
|
|
|
|
|
**Default:** `process.env`.
|
|
|
|
|
|
|
|
|
|
Replaces the current process with a new process.
|
|
|
|
|
|
|
|
|
|
This is achieved by using the `execve` POSIX function and therefore no memory or other
|
|
|
|
|
resources from the current process are preserved, except for the standard input,
|
|
|
|
|
standard output and standard error file descriptor.
|
|
|
|
|
|
|
|
|
|
All other resources are discarded by the system when the processes are swapped, without triggering
|
|
|
|
|
any exit or close events and without running any cleanup handler.
|
|
|
|
|
|
|
|
|
|
This function will never return, unless an error occurred.
|
|
|
|
|
|
2025-04-18 06:07:51 -05:00
|
|
|
|
This function is not available on Windows or IBM i.
|
2025-01-07 07:24:20 +01:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.report`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-02-07 08:37:31 -05:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v11.8.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32242
|
2020-06-28 20:37:25 -07:00
|
|
|
|
description: This API is no longer experimental.
|
2019-02-07 08:37:31 -05:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {Object}
|
|
|
|
|
|
|
|
|
|
`process.report` is an object whose methods are used to generate diagnostic
|
|
|
|
|
reports for the current process. Additional documentation is available in the
|
|
|
|
|
[report documentation][].
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2020-03-13 09:45:39 -07:00
|
|
|
|
### `process.report.compact`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2020-03-13 09:45:39 -07:00
|
|
|
|
<!-- YAML
|
2020-05-01 14:43:14 +02:00
|
|
|
|
added:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 09:45:39 -07:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
Write reports in a compact format, single-line JSON, more easily consumable
|
|
|
|
|
by log processing systems than the default multi-line format designed for
|
|
|
|
|
human consumption.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Reports are compact? ${report.compact}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Reports are compact? ${report.compact}`);
|
2020-03-13 09:45:39 -07:00
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### `process.report.directory`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-03-03 12:05:38 -05:00
|
|
|
|
<!-- YAML
|
2019-03-13 22:59:36 +01:00
|
|
|
|
added: v11.12.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32242
|
2020-06-28 20:37:25 -07:00
|
|
|
|
description: This API is no longer experimental.
|
2019-03-03 12:05:38 -05:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {string}
|
|
|
|
|
|
|
|
|
|
Directory where the report is written. The default value is the empty string,
|
|
|
|
|
indicating that reports are written to the current working directory of the
|
|
|
|
|
Node.js process.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report directory is ${report.directory}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report directory is ${report.directory}`);
|
2019-03-03 12:05:38 -05:00
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### `process.report.filename`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-03-06 00:19:14 +02:00
|
|
|
|
<!-- YAML
|
2019-03-13 22:59:36 +01:00
|
|
|
|
added: v11.12.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32242
|
2020-06-28 20:37:25 -07:00
|
|
|
|
description: This API is no longer experimental.
|
2019-03-06 00:19:14 +02:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {string}
|
|
|
|
|
|
|
|
|
|
Filename where the report is written. If set to the empty string, the output
|
|
|
|
|
filename will be comprised of a timestamp, PID, and sequence number. The default
|
|
|
|
|
value is the empty string.
|
|
|
|
|
|
2022-08-19 12:42:29 +08:00
|
|
|
|
If the value of `process.report.filename` is set to `'stdout'` or `'stderr'`,
|
|
|
|
|
the report is written to the stdout or stderr of the process respectively.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report filename is ${report.filename}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report filename is ${report.filename}`);
|
2019-03-06 00:19:14 +02:00
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### `process.report.getReport([err])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2018-09-05 19:52:49 +05:30
|
|
|
|
<!-- YAML
|
2019-01-25 13:02:00 -05:00
|
|
|
|
added: v11.8.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32242
|
2020-06-28 20:37:25 -07:00
|
|
|
|
description: This API is no longer experimental.
|
2018-09-05 19:52:49 +05:30
|
|
|
|
-->
|
|
|
|
|
|
2019-02-26 01:30:23 -05:00
|
|
|
|
* `err` {Error} A custom error used for reporting the JavaScript stack.
|
2019-07-10 13:27:44 -07:00
|
|
|
|
* Returns: {Object}
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2019-07-10 13:27:44 -07:00
|
|
|
|
Returns a JavaScript Object representation of a diagnostic report for the
|
|
|
|
|
running process. The report's JavaScript stack trace is taken from `err`, if
|
|
|
|
|
present.
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2023-04-01 00:37:56 +09:00
|
|
|
|
import util from 'node:util';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const data = report.getReport();
|
|
|
|
|
console.log(data.header.nodejsVersion);
|
|
|
|
|
|
|
|
|
|
// Similar to process.report.writeReport()
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import fs from 'node:fs';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
fs.writeFileSync('my-report.log', util.inspect(data), 'utf8');
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2023-04-01 00:37:56 +09:00
|
|
|
|
const util = require('node:util');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const data = report.getReport();
|
2020-10-13 08:42:51 +04:00
|
|
|
|
console.log(data.header.nodejsVersion);
|
2019-07-10 13:27:44 -07:00
|
|
|
|
|
|
|
|
|
// Similar to process.report.writeReport()
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const fs = require('node:fs');
|
2021-06-05 18:44:28 +03:00
|
|
|
|
fs.writeFileSync('my-report.log', util.inspect(data), 'utf8');
|
2018-09-05 19:52:49 +05:30
|
|
|
|
```
|
|
|
|
|
|
2019-02-07 08:37:31 -05:00
|
|
|
|
Additional documentation is available in the [report documentation][].
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### `process.report.reportOnFatalError`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-03-03 12:05:38 -05:00
|
|
|
|
<!-- YAML
|
2019-03-13 22:59:36 +01:00
|
|
|
|
added: v11.12.0
|
2020-10-15 13:04:23 +05:30
|
|
|
|
changes:
|
|
|
|
|
- version:
|
2020-10-20, Version 15.0.0 (Current)
Notable changes:
Deprecations and Removals:
- **build**: remove --build-v8-with-gn configure option (Yang Guo)
(https://github.com/nodejs/node/pull/27576)
- **build**: drop support for VS2017 (Michaël Zasso)
(https://github.com/nodejs/node/pull/33694)
- **doc**: move DEP0018 to End-of-Life (Rich Trott)
(https://github.com/nodejs/node/pull/35316)
- **fs**: deprecation warning on recursive rmdir (Ian Sutherland)
(https://github.com/nodejs/node/pull/35562)
- **lib**: add EventTarget-related browser globals (Anna Henningsen)
(https://github.com/nodejs/node/pull/35496)
- **net**: remove long deprecated server.connections property (James M
Snell) (https://github.com/nodejs/node/pull/33647)
- **repl**: remove deprecated repl.memory function (Ruben Bridgewater)
(https://github.com/nodejs/node/pull/33286)
- **repl**: remove deprecated repl.turnOffEditorMode() function (Ruben
Bridgewater) (https://github.com/nodejs/node/pull/33286)
- **repl**: remove deprecated repl.parseREPLKeyword() function (Ruben
Bridgewater) (https://github.com/nodejs/node/pull/33286)
- **repl**: remove deprecated bufferedCommand property (Ruben
Bridgewater) (https://github.com/nodejs/node/pull/33286)
- **repl**: remove deprecated .rli (Ruben Bridgewater)
(https://github.com/nodejs/node/pull/33286)
- **src**: remove deprecated node debug command (James M Snell)
(https://github.com/nodejs/node/pull/33648)
- **timers**: introduce timers/promises (James M Snell)
(https://github.com/nodejs/node/pull/33950)
- **util**: change default value of `maxStringLength` to 10000
(unknown) (https://github.com/nodejs/node/pull/32744)
- **wasi**: drop --experimental-wasm-bigint requirement (Colin Ihrig)
(https://github.com/nodejs/node/pull/35415)
npm 7 (https://github.com/nodejs/node/pull/35631):
Node.js 15 comes with a new major release of npm, npm 7. npm 7 comes
with many new features - including npm workspaces and a new
package-lock.json format. npm 7 also includes yarn.lock file support.
One of the big changes in npm 7 is that peer dependencies are now
installed by default.
Throw On Unhandled Rejections
(https://github.com/nodejs/node/pull/33021):
As of Node.js 15, the default mode for `unhandledRejection` is changed
to `throw` (from `warn`). In `throw` mode, if an `unhandledRejection`
hook is not set, the `unhandledRejection` is raised as an uncaught
exception. Users that have an `unhandledRejection` hook should see no
change in behavior, and it’s still possible to switch modes using the
`--unhandled-rejections=mode` process flag.
QUIC (https://github.com/nodejs/node/pull/32379):
Node.js 15 comes with experimental support QUIC, which can be enabled
by compiling Node.js with the `--experimental-quic` configuration flag.
The Node.js QUIC implementation is exposed by the core `net` module.
V8 8.6 (https://github.com/nodejs/node/pull/35415):
The V8 JavaScript engine has been updated to V8 8.6 (V8 8.4 is the
latest available in Node.js 14). Along with performance tweaks and
improvements the V8 update also brings the following language features:
* `Promise.any()` (from V8 8.5)
* `AggregateError` (from V8 8.5)
* `String.prototype.replaceAll()` (from V8 8.5)
* Logical assignment operators `&&=`, `||=`, and `??=` (from V8 8.5)
Other Notable Changes:
- **assert**: add `assert/strict` alias module (ExE Boss)
(https://github.com/nodejs/node/pull/34001)
- **dns**: add dns/promises alias (shisama)
(https://github.com/nodejs/node/pull/32953)
- **fs**: reimplement read and write streams using stream.construct
(Robert Nagy) (https://github.com/nodejs/node/pull/29656)
- **http2**: allow Host in HTTP/2 requests (Alba Mendez)
(https://github.com/nodejs/node/pull/34664)
- **lib**: add EventTarget-related browser globals (Anna Henningsen)
(https://github.com/nodejs/node/pull/35496)
- **lib**: unflag AbortController (James M Snell)
(https://github.com/nodejs/node/pull/33527)
- **lib**: initial experimental AbortController implementation (James M
Snell) (https://github.com/nodejs/node/pull/33527)
- **net**: autoDestroy Socket (Robert Nagy)
(https://github.com/nodejs/node/pull/31806)
- **src**: disallow JS execution inside FreeEnvironment (Anna
Henningsen) (https://github.com/nodejs/node/pull/33874)
- **stream**: construct (Robert Nagy)
(https://github.com/nodejs/node/pull/29656)
- **worker**: make MessageEvent class more Web-compatible (Anna
Henningsen) (https://github.com/nodejs/node/pull/35496)
Semver-Major Commits:
- **assert**: add `assert/strict` alias module (ExE Boss)
(https://github.com/nodejs/node/pull/34001)
- **build**: reset embedder string to "-node.0" (Michaël Zasso)
(https://github.com/nodejs/node/pull/35415)
- **build**: remove --build-v8-with-gn configure option (Yang Guo)
(https://github.com/nodejs/node/pull/27576)
- **build**: drop support for VS2017 (Michaël Zasso)
(https://github.com/nodejs/node/pull/33694)
- **crypto**: refactoring internals, add WebCrypto (James M Snell)
(https://github.com/nodejs/node/pull/35093)
- **crypto**: move node\_crypto files to src/crypto (James M Snell)
(https://github.com/nodejs/node/pull/35093)
- **deps**: V8: cherry-pick d76abfed3512 (Michaël Zasso)
(https://github.com/nodejs/node/pull/35415)
- **deps**: V8: cherry-pick 717543bbf0ef (Michaël Zasso)
(https://github.com/nodejs/node/pull/35415)
- **deps**: V8: cherry-pick 6be2f6e26e8d (Michaël Zasso)
(https://github.com/nodejs/node/pull/35415)
- **deps**: fix V8 build issue with inline methods (Jiawen Geng)
(https://github.com/nodejs/node/pull/35415)
- **deps**: fix platform-embedded-file-writer-win for ARM64 (Michaël
Zasso) (https://github.com/nodejs/node/pull/35415)
- **deps**: update V8 postmortem metadata script (Colin Ihrig)
(https://github.com/nodejs/node/pull/35415)
- **deps**: update V8 to 8.6.395 (Michaël Zasso)
(https://github.com/nodejs/node/pull/35415)
- **deps**: upgrade npm to 7.0.0 (Myles Borins)
(https://github.com/nodejs/node/pull/35631)
- **deps**: update npm to 7.0.0-rc.3 (Myles Borins)
(https://github.com/nodejs/node/pull/35474)
- **deps**: V8: cherry-pick 0d6debcc5f08 (Gus Caplan)
(https://github.com/nodejs/node/pull/33600)
- **dns**: add dns/promises alias (shisama)
(https://github.com/nodejs/node/pull/32953)
- **doc**: move DEP0018 to End-of-Life (Rich Trott)
(https://github.com/nodejs/node/pull/35316)
- **doc**: update support macos version for 15.x (Ash Cripps)
(https://github.com/nodejs/node/pull/35022)
- **fs**: deprecation warning on recursive rmdir (Ian Sutherland)
(https://github.com/nodejs/node/pull/35562)
- **fs**: reimplement read and write streams using stream.construct
(Robert Nagy) (https://github.com/nodejs/node/pull/29656)
- **http**: fixed socket.setEncoding fatal error (iskore)
(https://github.com/nodejs/node/pull/33405)
- **http**: emit 'error' on aborted server request (Robert Nagy)
(https://github.com/nodejs/node/pull/33172)
- **http**: cleanup end argument handling (Robert Nagy)
(https://github.com/nodejs/node/pull/31818)
- **http2**: allow Host in HTTP/2 requests (Alba Mendez)
(https://github.com/nodejs/node/pull/34664)
- **http2**: add `invalidheaders` test (Pranshu Srivastava)
(https://github.com/nodejs/node/pull/33161)
- **http2**: refactor state code validation for the http2Stream class
(rickyes) (https://github.com/nodejs/node/pull/33535)
- **http2**: header field valid checks (Pranshu Srivastava)
(https://github.com/nodejs/node/pull/33193)
- **lib**: add EventTarget-related browser globals (Anna Henningsen)
(https://github.com/nodejs/node/pull/35496)
- **lib**: remove ERR\_INVALID\_OPT\_VALUE and
ERR\_INVALID\_OPT\_VALUE\_ENCODING (Denys Otrishko)
(https://github.com/nodejs/node/pull/34682)
- **lib**: handle one of args case in ERR\_MISSING\_ARGS (Denys
Otrishko) (https://github.com/nodejs/node/pull/34022)
- **lib**: remove NodeError from the prototype of errors with code
(Michaël Zasso) (https://github.com/nodejs/node/pull/33857)
- **lib**: unflag AbortController (James M Snell)
(https://github.com/nodejs/node/pull/33527)
- **lib**: initial experimental AbortController implementation (James M
Snell) (https://github.com/nodejs/node/pull/33527)
- **net**: check args in net.connect() and socket.connect() calls
(Denys Otrishko) (https://github.com/nodejs/node/pull/34022)
- **net**: remove long deprecated server.connections property (James M
Snell) (https://github.com/nodejs/node/pull/33647)
- **net**: autoDestroy Socket (Robert Nagy)
(https://github.com/nodejs/node/pull/31806)
- **process**: update v8 fast api calls usage (Maya Lekova)
(https://github.com/nodejs/node/pull/35415)
- **process**: change default --unhandled-rejections=throw (Dan
Fabulich) (https://github.com/nodejs/node/pull/33021)
- **process**: use v8 fast api calls for hrtime (Gus Caplan)
(https://github.com/nodejs/node/pull/33600)
- **process**: delay throwing an error using `throwDeprecation` (Ruben
Bridgewater) (https://github.com/nodejs/node/pull/32312)
- **repl**: remove deprecated repl.memory function (Ruben Bridgewater)
(https://github.com/nodejs/node/pull/33286)
- **repl**: remove deprecated repl.turnOffEditorMode() function (Ruben
Bridgewater) (https://github.com/nodejs/node/pull/33286)
- **repl**: remove deprecated repl.parseREPLKeyword() function (Ruben
Bridgewater) (https://github.com/nodejs/node/pull/33286)
- **repl**: remove deprecated bufferedCommand property (Ruben
Bridgewater) (https://github.com/nodejs/node/pull/33286)
- **repl**: remove deprecated .rli (Ruben Bridgewater)
(https://github.com/nodejs/node/pull/33286)
- **src**: implement NodePlatform::PostJob (Clemens Backes)
(https://github.com/nodejs/node/pull/35415)
- **src**: update NODE\_MODULE\_VERSION to 88 (Michaël Zasso)
(https://github.com/nodejs/node/pull/35415)
- **src**: error reporting on CPUUsage (Yash Ladha)
(https://github.com/nodejs/node/pull/34762)
- **src**: use node:moduleName as builtin module filename (Michaël
Zasso) (https://github.com/nodejs/node/pull/35498)
- **src**: enable wasm trap handler on windows (Gus Caplan)
(https://github.com/nodejs/node/pull/35033)
- **src**: update NODE\_MODULE\_VERSION to 86 (Michaël Zasso)
(https://github.com/nodejs/node/pull/33579)
- **src**: disallow JS execution inside FreeEnvironment (Anna
Henningsen) (https://github.com/nodejs/node/pull/33874)
- **src**: remove \_third\_party\_main support (Anna Henningsen)
(https://github.com/nodejs/node/pull/33971)
- **src**: remove deprecated node debug command (James M Snell)
(https://github.com/nodejs/node/pull/33648)
- **src**: remove unused CancelPendingDelayedTasks (Anna Henningsen)
(https://github.com/nodejs/node/pull/32859)
- **stream**: try to wait for flush to complete before 'finish' (Robert
Nagy) (https://github.com/nodejs/node/pull/34314)
- **stream**: cleanup and fix Readable.wrap (Robert Nagy)
(https://github.com/nodejs/node/pull/34204)
- **stream**: add promises version to utility functions (rickyes)
(https://github.com/nodejs/node/pull/33991)
- **stream**: fix writable.end callback behavior (Robert Nagy)
(https://github.com/nodejs/node/pull/34101)
- **stream**: construct (Robert Nagy)
(https://github.com/nodejs/node/pull/29656)
- **stream**: write should throw on unknown encoding (Robert Nagy)
(https://github.com/nodejs/node/pull/33075)
- **stream**: fix \_final and 'prefinish' timing (Robert Nagy)
(https://github.com/nodejs/node/pull/32780)
- **stream**: simplify Transform stream implementation (Robert Nagy)
(https://github.com/nodejs/node/pull/32763)
- **stream**: use callback to properly propagate error (Robert Nagy)
(https://github.com/nodejs/node/pull/29179)
- **test**: update tests after increasing typed array size to 4GB
(Kim-Anh Tran) (https://github.com/nodejs/node/pull/35415)
- **test**: fix tests for npm 7.0.0 (Myles Borins)
(https://github.com/nodejs/node/pull/35631)
- **test**: fix test suite to work with npm 7 (Myles Borins)
(https://github.com/nodejs/node/pull/35474)
- **test**: update WPT harness and tests (Michaël Zasso)
(https://github.com/nodejs/node/pull/33770)
- **timers**: introduce timers/promises (James M Snell)
(https://github.com/nodejs/node/pull/33950)
- **tools**: disable x86 safe exception handlers in V8 (Michaël Zasso)
(https://github.com/nodejs/node/pull/35415)
- **tools**: update V8 gypfiles for 8.6 (Ujjwal Sharma)
(https://github.com/nodejs/node/pull/35415)
- **tools**: update V8 gypfiles for 8.5 (Ujjwal Sharma)
(https://github.com/nodejs/node/pull/35415)
- **url**: file URL path normalization (Daijiro Wachi)
(https://github.com/nodejs/node/pull/35477)
- **url**: verify domain is not empty after "ToASCII" (Michaël Zasso)
(https://github.com/nodejs/node/pull/33770)
- **url**: remove U+0000 case in the fragment state (Michaël Zasso)
(https://github.com/nodejs/node/pull/33770)
- **url**: remove gopher from special schemes (Michaël Zasso)
(https://github.com/nodejs/node/pull/33325)
- **url**: forbid lt and gt in url host code point (Yash Ladha)
(https://github.com/nodejs/node/pull/33328)
- **util**: change default value of `maxStringLength` to 10000
(unknown) (https://github.com/nodejs/node/pull/32744)
- **wasi**: drop --experimental-wasm-bigint requirement (Colin Ihrig)
(https://github.com/nodejs/node/pull/35415)
- **win, child_process**: sanitize env variables (Bartosz Sosnowski)
(https://github.com/nodejs/node/pull/35210)
- **worker**: make MessageEvent class more Web-compatible (Anna
Henningsen) (https://github.com/nodejs/node/pull/35496)
- **worker**: set trackUnmanagedFds to true by default (Anna
Henningsen) (https://github.com/nodejs/node/pull/34394)
- **worker**: rename error code to be more accurate (Anna Henningsen)
(https://github.com/nodejs/node/pull/33872)
PR-URL: https://github.com/nodejs/node/pull/35014
2020-09-01 21:16:46 +01:00
|
|
|
|
- v15.0.0
|
2021-05-11, Version 14.17.0 'Fermium' (LTS)
Notable Changes:
Diagnostics channel (experimental module):
`diagnostics_channel` is a new experimental module that provides an API
to create named channels to report arbitrary message data for
diagnostics purposes.
The module was initially introduced in Node.js v15.1.0 and is
backported to v14.17.0 to enable testing it at a larger scale.
With `diagnostics_channel`, Node.js core and module authors can publish
contextual data about what they are doing at a given time. This could
be the hostname and query string of a mysql query, for example. Just
create a named channel with `dc.channel(name)` and call
`channel.publish(data)` to send the data to any listeners to that
channel.
```js
const dc = require('diagnostics_channel');
const channel = dc.channel('mysql.query');
MySQL.prototype.query = function query(queryString, values, callback) {
// Broadcast query information whenever a query is made
channel.publish({
query: queryString,
host: this.hostname,
});
this.doQuery(queryString, values, callback);
};
```
Channels are like one big global event emitter but are split into
separate objects to ensure they get the best performance. If nothing is
listening to the channel, the publishing overhead should be as close to
zero as possible. Consuming channel data is as easy as using
`channel.subscribe(listener)` to run a function whenever a message is
published to that channel.
```js
const dc = require('diagnostics_channel');
const channel = dc.channel('mysql.query');
channel.subscribe(({ query, host }) => {
console.log(`mysql query to ${host}: ${query}`);
});
```
The data captured can be used to provide context for what an app is
doing at a given time. This can be used for things like augmenting
tracing data, tracking network and filesystem activity, logging
queries, and many other things. It's also a very useful data source
for diagnostics tools to provide a clearer picture of exactly what the
application is doing at a given point in the data they are presenting.
Contributed by Stephen Belanger (https://github.com/nodejs/node/pull/34895).
UUID support in the crypto module:
The new `crypto.randomUUID()` method now allows to generate random
[RFC 4122](https://www.rfc-editor.org/rfc/rfc4122.txt) Version 4
UUID strings:
```js
const { randomUUID } = require('crypto');
console.log(randomUUID());
// 'aa7c91a1-f8fc-4339-b9db-f93fc7233429'
```
Contributed by James M Snell (https://github.com/nodejs/node/pull/36729).
Experimental support for `AbortController` and `AbortSignal`:
Node.js 14.17.0 adds experimental partial support for `AbortController`
and `AbortSignal`.
Both constructors can be enabled globally using the
`--experimental-abortcontroller` flag.
Additionally, several Node.js APIs have been updated to support
`AbortSignal` for cancellation.
It is not mandatory to use the built-in constructors with them. Any
spec-compliant third-party alternatives should be compatible.
`AbortSignal` support was added to the following methods:
* `child_process.exec`
* `child_process.execFile`
* `child_process.fork`
* `child_process.spawn`
* `dgram.createSocket`
* `events.on`
* `events.once`
* `fs.readFile`
* `fs.watch`
* `fs.writeFile`
* `http.request`
* `https.request`
* `http2Session.request`
* The promisified variants of `setImmediate` and `setTimeout`
Other notable changes:
* doc:
* revoke deprecation of legacy url, change status to legacy (James M Snell) (https://github.com/nodejs/node/pull/37784)
* add legacy status to stability index (James M Snell) (https://github.com/nodejs/node/pull/37784)
* upgrade stability status of report API (Gireesh Punathil) (https://github.com/nodejs/node/pull/35654)
* deps:
* V8: Backport various patches for Apple Silicon support (BoHong Li) (https://github.com/nodejs/node/pull/38051)
* update ICU to 68.1 (Michaël Zasso) (https://github.com/nodejs/node/pull/36187)
* upgrade to libuv 1.41.0 (Colin Ihrig) (https://github.com/nodejs/node/pull/37360)
* http:
* add http.ClientRequest.getRawHeaderNames() (simov) (https://github.com/nodejs/node/pull/37660)
* report request start and end with diagnostics\_channel (Stephen Belanger) (https://github.com/nodejs/node/pull/34895)
* util:
* add getSystemErrorMap() impl (eladkeyshawn) (https://github.com/nodejs/node/pull/38101)
PR-URL: https://github.com/nodejs/node/pull/38507
2021-05-02 23:12:18 -04:00
|
|
|
|
- v14.17.0
|
2020-10-19 05:43:34 -07:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/35654
|
2020-10-15 13:04:23 +05:30
|
|
|
|
description: This API is no longer experimental.
|
2019-03-03 12:05:38 -05:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2019-03-03 12:05:38 -05:00
|
|
|
|
If `true`, a diagnostic report is generated on fatal errors, such as out of
|
|
|
|
|
memory errors or failed C++ assertions.
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report on fatal error: ${report.reportOnFatalError}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report on fatal error: ${report.reportOnFatalError}`);
|
2018-09-05 19:52:49 +05:30
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### `process.report.reportOnSignal`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-03-03 12:05:38 -05:00
|
|
|
|
<!-- YAML
|
2019-03-13 22:59:36 +01:00
|
|
|
|
added: v11.12.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32242
|
2020-06-28 20:37:25 -07:00
|
|
|
|
description: This API is no longer experimental.
|
2019-03-03 12:05:38 -05:00
|
|
|
|
-->
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2019-03-03 12:05:38 -05:00
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
If `true`, a diagnostic report is generated when the process receives the
|
|
|
|
|
signal specified by `process.report.signal`.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report on signal: ${report.reportOnSignal}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report on signal: ${report.reportOnSignal}`);
|
2019-03-03 12:05:38 -05:00
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### `process.report.reportOnUncaughtException`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-03-03 12:05:38 -05:00
|
|
|
|
<!-- YAML
|
2019-03-13 22:59:36 +01:00
|
|
|
|
added: v11.12.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32242
|
2020-06-28 20:37:25 -07:00
|
|
|
|
description: This API is no longer experimental.
|
2019-03-03 12:05:38 -05:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
If `true`, a diagnostic report is generated on uncaught exception.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report on exception: ${report.reportOnUncaughtException}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report on exception: ${report.reportOnUncaughtException}`);
|
2019-03-03 12:05:38 -05:00
|
|
|
|
```
|
|
|
|
|
|
2024-11-08 14:49:43 -03:00
|
|
|
|
### `process.report.excludeEnv`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2025-01-05 13:33:23 -05:00
|
|
|
|
added:
|
|
|
|
|
- v23.3.0
|
|
|
|
|
- v22.13.0
|
2024-11-08 14:49:43 -03:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
If `true`, a diagnostic report is generated without the environment variables.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### `process.report.signal`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-03-03 12:05:38 -05:00
|
|
|
|
<!-- YAML
|
2019-03-13 22:59:36 +01:00
|
|
|
|
added: v11.12.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32242
|
2020-06-28 20:37:25 -07:00
|
|
|
|
description: This API is no longer experimental.
|
2019-03-03 12:05:38 -05:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {string}
|
|
|
|
|
|
|
|
|
|
The signal used to trigger the creation of a diagnostic report. Defaults to
|
2019-03-06 00:19:14 +02:00
|
|
|
|
`'SIGUSR2'`.
|
2019-03-03 12:05:38 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report signal: ${report.signal}`);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Report signal: ${report.signal}`);
|
2019-03-03 12:05:38 -05:00
|
|
|
|
```
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
### `process.report.writeReport([filename][, err])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2018-09-05 19:52:49 +05:30
|
|
|
|
<!-- YAML
|
2019-01-25 13:02:00 -05:00
|
|
|
|
added: v11.8.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
changes:
|
2020-05-01 14:43:14 +02:00
|
|
|
|
- version:
|
|
|
|
|
- v13.12.0
|
|
|
|
|
- v12.17.0
|
2020-03-13 00:28:01 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32242
|
2020-06-28 20:37:25 -07:00
|
|
|
|
description: This API is no longer experimental.
|
2018-09-05 19:52:49 +05:30
|
|
|
|
-->
|
|
|
|
|
|
2019-02-07 08:37:31 -05:00
|
|
|
|
* `filename` {string} Name of the file where the report is written. This
|
|
|
|
|
should be a relative path, that will be appended to the directory specified in
|
2019-03-03 12:05:38 -05:00
|
|
|
|
`process.report.directory`, or the current working directory of the Node.js
|
2019-02-07 13:20:32 -05:00
|
|
|
|
process, if unspecified.
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-02-26 01:30:23 -05:00
|
|
|
|
* `err` {Error} A custom error used for reporting the JavaScript stack.
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
|
|
|
|
* Returns: {string} Returns the filename of the generated report.
|
|
|
|
|
|
2019-02-07 08:37:31 -05:00
|
|
|
|
Writes a diagnostic report to a file. If `filename` is not provided, the default
|
|
|
|
|
filename includes the date, time, PID, and a sequence number. The report's
|
|
|
|
|
JavaScript stack trace is taken from `err`, if present.
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2022-08-19 12:42:29 +08:00
|
|
|
|
If the value of `filename` is set to `'stdout'` or `'stderr'`, the report is
|
|
|
|
|
written to the stdout or stderr of the process respectively.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { report } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
report.writeReport();
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { report } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
report.writeReport();
|
2018-09-05 19:52:49 +05:30
|
|
|
|
```
|
|
|
|
|
|
2019-02-07 08:37:31 -05:00
|
|
|
|
Additional documentation is available in the [report documentation][].
|
2018-09-05 19:52:49 +05:30
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.resourceUsage()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2019-06-02 13:33:47 +02:00
|
|
|
|
<!-- YAML
|
2019-07-02 10:12:51 +02:00
|
|
|
|
added: v12.6.0
|
2019-06-02 13:33:47 +02:00
|
|
|
|
-->
|
|
|
|
|
|
2019-07-01 18:04:44 +03:00
|
|
|
|
* Returns: {Object} the resource usage for the current process. All of these
|
|
|
|
|
values come from the `uv_getrusage` call which returns
|
|
|
|
|
a [`uv_rusage_t` struct][uv_rusage_t].
|
2019-09-01 02:18:32 -04:00
|
|
|
|
* `userCPUTime` {integer} maps to `ru_utime` computed in microseconds.
|
|
|
|
|
It is the same value as [`process.cpuUsage().user`][process.cpuUsage].
|
|
|
|
|
* `systemCPUTime` {integer} maps to `ru_stime` computed in microseconds.
|
|
|
|
|
It is the same value as [`process.cpuUsage().system`][process.cpuUsage].
|
|
|
|
|
* `maxRSS` {integer} maps to `ru_maxrss` which is the maximum resident set
|
|
|
|
|
size used in kilobytes.
|
|
|
|
|
* `sharedMemorySize` {integer} maps to `ru_ixrss` but is not supported by
|
|
|
|
|
any platform.
|
|
|
|
|
* `unsharedDataSize` {integer} maps to `ru_idrss` but is not supported by
|
|
|
|
|
any platform.
|
|
|
|
|
* `unsharedStackSize` {integer} maps to `ru_isrss` but is not supported by
|
|
|
|
|
any platform.
|
|
|
|
|
* `minorPageFault` {integer} maps to `ru_minflt` which is the number of
|
|
|
|
|
minor page faults for the process, see
|
|
|
|
|
[this article for more details][wikipedia_minor_fault].
|
|
|
|
|
* `majorPageFault` {integer} maps to `ru_majflt` which is the number of
|
|
|
|
|
major page faults for the process, see
|
|
|
|
|
[this article for more details][wikipedia_major_fault]. This field is not
|
|
|
|
|
supported on Windows.
|
|
|
|
|
* `swappedOut` {integer} maps to `ru_nswap` but is not supported by any
|
|
|
|
|
platform.
|
|
|
|
|
* `fsRead` {integer} maps to `ru_inblock` which is the number of times the
|
|
|
|
|
file system had to perform input.
|
|
|
|
|
* `fsWrite` {integer} maps to `ru_oublock` which is the number of times the
|
|
|
|
|
file system had to perform output.
|
|
|
|
|
* `ipcSent` {integer} maps to `ru_msgsnd` but is not supported by any
|
|
|
|
|
platform.
|
|
|
|
|
* `ipcReceived` {integer} maps to `ru_msgrcv` but is not supported by any
|
|
|
|
|
platform.
|
|
|
|
|
* `signalsCount` {integer} maps to `ru_nsignals` but is not supported by any
|
|
|
|
|
platform.
|
|
|
|
|
* `voluntaryContextSwitches` {integer} maps to `ru_nvcsw` which is the
|
|
|
|
|
number of times a CPU context switch resulted due to a process voluntarily
|
|
|
|
|
giving up the processor before its time slice was completed (usually to
|
|
|
|
|
await availability of a resource). This field is not supported on Windows.
|
|
|
|
|
* `involuntaryContextSwitches` {integer} maps to `ru_nivcsw` which is the
|
|
|
|
|
number of times a CPU context switch resulted due to a higher priority
|
|
|
|
|
process becoming runnable or because the current process exceeded its
|
|
|
|
|
time slice. This field is not supported on Windows.
|
2019-06-02 13:33:47 +02:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { resourceUsage } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(resourceUsage());
|
|
|
|
|
/*
|
|
|
|
|
Will output:
|
|
|
|
|
{
|
|
|
|
|
userCPUTime: 82872,
|
|
|
|
|
systemCPUTime: 4143,
|
|
|
|
|
maxRSS: 33164,
|
|
|
|
|
sharedMemorySize: 0,
|
|
|
|
|
unsharedDataSize: 0,
|
|
|
|
|
unsharedStackSize: 0,
|
|
|
|
|
minorPageFault: 2469,
|
|
|
|
|
majorPageFault: 0,
|
|
|
|
|
swappedOut: 0,
|
|
|
|
|
fsRead: 0,
|
|
|
|
|
fsWrite: 8,
|
|
|
|
|
ipcSent: 0,
|
|
|
|
|
ipcReceived: 0,
|
|
|
|
|
signalsCount: 0,
|
|
|
|
|
voluntaryContextSwitches: 79,
|
|
|
|
|
involuntaryContextSwitches: 1
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { resourceUsage } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(resourceUsage());
|
2019-06-02 13:33:47 +02:00
|
|
|
|
/*
|
|
|
|
|
Will output:
|
|
|
|
|
{
|
|
|
|
|
userCPUTime: 82872,
|
|
|
|
|
systemCPUTime: 4143,
|
|
|
|
|
maxRSS: 33164,
|
|
|
|
|
sharedMemorySize: 0,
|
|
|
|
|
unsharedDataSize: 0,
|
|
|
|
|
unsharedStackSize: 0,
|
|
|
|
|
minorPageFault: 2469,
|
|
|
|
|
majorPageFault: 0,
|
2019-07-01 10:28:51 -04:00
|
|
|
|
swappedOut: 0,
|
2019-06-02 13:33:47 +02:00
|
|
|
|
fsRead: 0,
|
|
|
|
|
fsWrite: 8,
|
|
|
|
|
ipcSent: 0,
|
|
|
|
|
ipcReceived: 0,
|
|
|
|
|
signalsCount: 0,
|
|
|
|
|
voluntaryContextSwitches: 79,
|
|
|
|
|
involuntaryContextSwitches: 1
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
```
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.send(message[, sendHandle[, options]][, callback])`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.9
|
|
|
|
|
-->
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
|
|
|
|
* `message` {Object}
|
2018-04-08 16:53:47 +03:00
|
|
|
|
* `sendHandle` {net.Server|net.Socket}
|
2019-10-07 23:46:03 +05:30
|
|
|
|
* `options` {Object} used to parameterize the sending of certain types of
|
|
|
|
|
handles.`options` supports the following properties:
|
|
|
|
|
* `keepOpen` {boolean} A value that can be used when passing instances of
|
|
|
|
|
`net.Socket`. When `true`, the socket is kept open in the sending process.
|
|
|
|
|
**Default:** `false`.
|
2016-02-17 11:13:18 -05:00
|
|
|
|
* `callback` {Function}
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* Returns: {boolean}
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
If Node.js is spawned with an IPC channel, the `process.send()` method can be
|
|
|
|
|
used to send messages to the parent process. Messages will be received as a
|
2016-02-19 01:38:21 +03:00
|
|
|
|
[`'message'`][] event on the parent's [`ChildProcess`][] object.
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2019-11-06 14:36:25 +05:30
|
|
|
|
If Node.js was not spawned with an IPC channel, `process.send` will be
|
2016-05-27 12:24:05 -07:00
|
|
|
|
`undefined`.
|
2016-03-15 11:12:41 -05:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
The message goes through serialization and parsing. The resulting message might
|
|
|
|
|
not be the same as what is originally sent.
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.setegid(id)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v2.0.0
|
|
|
|
|
-->
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
|
* `id` {string|number} A group name or ID
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.setegid()` method sets the effective group identity of the process.
|
|
|
|
|
(See setegid(2).) The `id` can be passed as either a numeric ID or a group
|
|
|
|
|
name string. If a group name is specified, this method blocks while resolving
|
|
|
|
|
the associated a numeric ID.
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.getegid && process.setegid) {
|
|
|
|
|
console.log(`Current gid: ${process.getegid()}`);
|
|
|
|
|
try {
|
|
|
|
|
process.setegid(501);
|
|
|
|
|
console.log(`New gid: ${process.getegid()}`);
|
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set gid: ${err}`);
|
2021-06-15 10:09:29 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (process.getegid && process.setegid) {
|
|
|
|
|
console.log(`Current gid: ${process.getegid()}`);
|
|
|
|
|
try {
|
|
|
|
|
process.setegid(501);
|
|
|
|
|
console.log(`New gid: ${process.getegid()}`);
|
2017-04-21 17:38:31 +03:00
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set gid: ${err}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2017-09-01 17:03:41 +02:00
|
|
|
|
This feature is not available in [`Worker`][] threads.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.seteuid(id)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v2.0.0
|
|
|
|
|
-->
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
|
* `id` {string|number} A user name or ID
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.seteuid()` method sets the effective user identity of the process.
|
|
|
|
|
(See seteuid(2).) The `id` can be passed as either a numeric ID or a username
|
2018-04-02 08:38:48 +03:00
|
|
|
|
string. If a username is specified, the method blocks while resolving the
|
2016-05-27 12:24:05 -07:00
|
|
|
|
associated numeric ID.
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.geteuid && process.seteuid) {
|
|
|
|
|
console.log(`Current uid: ${process.geteuid()}`);
|
|
|
|
|
try {
|
|
|
|
|
process.seteuid(501);
|
|
|
|
|
console.log(`New uid: ${process.geteuid()}`);
|
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set uid: ${err}`);
|
2021-06-15 10:09:29 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (process.geteuid && process.seteuid) {
|
|
|
|
|
console.log(`Current uid: ${process.geteuid()}`);
|
|
|
|
|
try {
|
|
|
|
|
process.seteuid(501);
|
|
|
|
|
console.log(`New uid: ${process.geteuid()}`);
|
2017-04-21 17:38:31 +03:00
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set uid: ${err}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2017-09-01 17:03:41 +02:00
|
|
|
|
This feature is not available in [`Worker`][] threads.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.setgid(id)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.31
|
|
|
|
|
-->
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
|
* `id` {string|number} The group name or ID
|
2015-06-14 19:06:22 -07:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.setgid()` method sets the group identity of the process. (See
|
2018-04-02 08:38:48 +03:00
|
|
|
|
setgid(2).) The `id` can be passed as either a numeric ID or a group name
|
2016-05-27 12:24:05 -07:00
|
|
|
|
string. If a group name is specified, this method blocks while resolving the
|
|
|
|
|
associated numeric ID.
|
2014-06-21 17:09:04 -07:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.getgid && process.setgid) {
|
|
|
|
|
console.log(`Current gid: ${process.getgid()}`);
|
|
|
|
|
try {
|
|
|
|
|
process.setgid(501);
|
|
|
|
|
console.log(`New gid: ${process.getgid()}`);
|
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set gid: ${err}`);
|
2021-06-15 10:09:29 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (process.getgid && process.setgid) {
|
|
|
|
|
console.log(`Current gid: ${process.getgid()}`);
|
|
|
|
|
try {
|
|
|
|
|
process.setgid(501);
|
|
|
|
|
console.log(`New gid: ${process.getgid()}`);
|
2017-04-21 17:38:31 +03:00
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set gid: ${err}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2017-09-01 17:03:41 +02:00
|
|
|
|
This feature is not available in [`Worker`][] threads.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.setgroups(groups)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.9.4
|
|
|
|
|
-->
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
* `groups` {integer\[]}
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
|
|
|
|
The `process.setgroups()` method sets the supplementary group IDs for the
|
2018-02-12 02:31:55 -05:00
|
|
|
|
Node.js process. This is a privileged operation that requires the Node.js
|
|
|
|
|
process to have `root` or the `CAP_SETGID` capability.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2020-10-21 16:35:27 +04:00
|
|
|
|
The `groups` array can contain numeric group IDs, group names, or both.
|
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.getgroups && process.setgroups) {
|
|
|
|
|
try {
|
|
|
|
|
process.setgroups([501]);
|
|
|
|
|
console.log(process.getgroups()); // new groups
|
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set groups: ${err}`);
|
2021-06-15 10:09:29 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2020-10-21 16:35:27 +04:00
|
|
|
|
if (process.getgroups && process.setgroups) {
|
|
|
|
|
try {
|
|
|
|
|
process.setgroups([501]);
|
|
|
|
|
console.log(process.getgroups()); // new groups
|
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set groups: ${err}`);
|
2020-10-21 16:35:27 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2017-09-01 17:03:41 +02:00
|
|
|
|
This feature is not available in [`Worker`][] threads.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.setuid(id)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.28
|
|
|
|
|
-->
|
2019-09-06 01:42:22 -04:00
|
|
|
|
|
2018-07-12 13:48:11 -04:00
|
|
|
|
* `id` {integer | string}
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-10-21 19:55:21 -05:00
|
|
|
|
The `process.setuid(id)` method sets the user identity of the process. (See
|
2018-04-02 08:38:48 +03:00
|
|
|
|
setuid(2).) The `id` can be passed as either a numeric ID or a username string.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
If a username is specified, the method blocks while resolving the associated
|
|
|
|
|
numeric ID.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import process from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
if (process.getuid && process.setuid) {
|
|
|
|
|
console.log(`Current uid: ${process.getuid()}`);
|
|
|
|
|
try {
|
|
|
|
|
process.setuid(501);
|
|
|
|
|
console.log(`New uid: ${process.getuid()}`);
|
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set uid: ${err}`);
|
2021-06-15 10:09:29 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const process = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
if (process.getuid && process.setuid) {
|
|
|
|
|
console.log(`Current uid: ${process.getuid()}`);
|
|
|
|
|
try {
|
|
|
|
|
process.setuid(501);
|
|
|
|
|
console.log(`New uid: ${process.getuid()}`);
|
2017-04-21 17:38:31 +03:00
|
|
|
|
} catch (err) {
|
2022-11-26 23:48:32 +09:00
|
|
|
|
console.error(`Failed to set uid: ${err}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
This function is only available on POSIX platforms (i.e. not Windows or
|
|
|
|
|
Android).
|
2017-09-01 17:03:41 +02:00
|
|
|
|
This feature is not available in [`Worker`][] threads.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2021-06-19 15:32:31 +08:00
|
|
|
|
## `process.setSourceMapsEnabled(val)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2021-06-19 15:32:31 +08:00
|
|
|
|
<!-- YAML
|
2021-09-04 15:29:35 +02:00
|
|
|
|
added:
|
|
|
|
|
- v16.6.0
|
|
|
|
|
- v14.18.0
|
2021-06-19 15:32:31 +08:00
|
|
|
|
-->
|
|
|
|
|
|
2025-01-23 22:44:10 +00:00
|
|
|
|
> Stability: 1 - Experimental: Use [`module.setSourceMapsSupport()`][] instead.
|
2021-06-19 15:32:31 +08:00
|
|
|
|
|
|
|
|
|
* `val` {boolean}
|
|
|
|
|
|
|
|
|
|
This function enables or disables the [Source Map v3][Source Map] support for
|
|
|
|
|
stack traces.
|
|
|
|
|
|
|
|
|
|
It provides same features as launching Node.js process with commandline options
|
|
|
|
|
`--enable-source-maps`.
|
|
|
|
|
|
|
|
|
|
Only source maps in JavaScript files that are loaded after source maps has been
|
|
|
|
|
enabled will be parsed and loaded.
|
|
|
|
|
|
2025-01-23 22:44:10 +00:00
|
|
|
|
This implies calling `module.setSourceMapsSupport()` with an option
|
|
|
|
|
`{ nodeModules: true, generatedCode: true }`.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.setUncaughtExceptionCaptureCallback(fn)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-11-20 19:57:20 +01:00
|
|
|
|
<!-- YAML
|
2017-12-12 03:09:37 -05:00
|
|
|
|
added: v9.3.0
|
2017-11-20 19:57:20 +01:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* `fn` {Function|null}
|
|
|
|
|
|
2018-06-25 16:57:31 +03:00
|
|
|
|
The `process.setUncaughtExceptionCaptureCallback()` function sets a function
|
|
|
|
|
that will be invoked when an uncaught exception occurs, which will receive the
|
|
|
|
|
exception value itself as its first argument.
|
2017-11-20 19:57:20 +01:00
|
|
|
|
|
2018-04-09 19:30:22 +03:00
|
|
|
|
If such a function is set, the [`'uncaughtException'`][] event will
|
2017-11-20 19:57:20 +01:00
|
|
|
|
not be emitted. If `--abort-on-uncaught-exception` was passed from the
|
|
|
|
|
command line or set through [`v8.setFlagsFromString()`][], the process will
|
2020-10-10 22:13:10 +04:00
|
|
|
|
not abort. Actions configured to take place on exceptions such as report
|
|
|
|
|
generations will be affected too
|
2017-11-20 19:57:20 +01:00
|
|
|
|
|
2018-06-25 16:57:31 +03:00
|
|
|
|
To unset the capture function,
|
|
|
|
|
`process.setUncaughtExceptionCaptureCallback(null)` may be used. Calling this
|
|
|
|
|
method with a non-`null` argument while another capture function is set will
|
|
|
|
|
throw an error.
|
2017-11-20 19:57:20 +01:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
Using this function is mutually exclusive with using the deprecated
|
|
|
|
|
[`domain`][] built-in module.
|
2017-11-20 19:57:20 +01:00
|
|
|
|
|
2023-08-17 17:42:12 +09:00
|
|
|
|
## `process.sourceMapsEnabled`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2023-11-27 12:19:49 +01:00
|
|
|
|
added:
|
|
|
|
|
- v20.7.0
|
|
|
|
|
- v18.19.0
|
2023-08-17 17:42:12 +09:00
|
|
|
|
-->
|
|
|
|
|
|
2025-01-23 22:44:10 +00:00
|
|
|
|
> Stability: 1 - Experimental: Use [`module.getSourceMapsSupport()`][] instead.
|
2023-08-17 17:42:12 +09:00
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
The `process.sourceMapsEnabled` property returns whether the
|
|
|
|
|
[Source Map v3][Source Map] support for stack traces is enabled.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.stderr`
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-11-07 23:23:41 +02:00
|
|
|
|
* {Stream}
|
|
|
|
|
|
2017-02-06 10:56:47 +01:00
|
|
|
|
The `process.stderr` property returns a stream connected to
|
|
|
|
|
`stderr` (fd `2`). It is a [`net.Socket`][] (which is a [Duplex][]
|
|
|
|
|
stream) unless fd `2` refers to a file, in which case it is
|
|
|
|
|
a [Writable][] stream.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2018-11-13 20:41:51 -08:00
|
|
|
|
`process.stderr` differs from other Node.js streams in important ways. See
|
2018-02-05 21:55:16 -08:00
|
|
|
|
[note on process I/O][] for more information.
|
2016-05-20 10:20:08 -04:00
|
|
|
|
|
2020-01-17 02:02:03 -05:00
|
|
|
|
### `process.stderr.fd`
|
|
|
|
|
|
|
|
|
|
* {number}
|
|
|
|
|
|
|
|
|
|
This property refers to the value of underlying file descriptor of
|
|
|
|
|
`process.stderr`. The value is fixed at `2`. In [`Worker`][] threads,
|
|
|
|
|
this field does not exist.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.stdin`
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-11-07 23:23:41 +02:00
|
|
|
|
* {Stream}
|
|
|
|
|
|
2017-02-06 10:56:47 +01:00
|
|
|
|
The `process.stdin` property returns a stream connected to
|
|
|
|
|
`stdin` (fd `0`). It is a [`net.Socket`][] (which is a [Duplex][]
|
|
|
|
|
stream) unless fd `0` refers to a file, in which case it is
|
|
|
|
|
a [Readable][] stream.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2019-04-22 20:37:48 +01:00
|
|
|
|
For details of how to read from `stdin` see [`readable.read()`][].
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2017-02-06 10:56:47 +01:00
|
|
|
|
As a [Duplex][] stream, `process.stdin` can also be used in "old" mode that
|
2016-05-27 12:24:05 -07:00
|
|
|
|
is compatible with scripts written for Node.js prior to v0.10.
|
2015-11-13 19:21:49 -08:00
|
|
|
|
For more information see [Stream compatibility][].
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
In "old" streams mode the `stdin` stream is paused by default, so one
|
2015-11-05 11:00:46 -05:00
|
|
|
|
must call `process.stdin.resume()` to read from it. Note also that calling
|
|
|
|
|
`process.stdin.resume()` itself would switch stream to "old" mode.
|
|
|
|
|
|
2020-01-17 02:02:03 -05:00
|
|
|
|
### `process.stdin.fd`
|
|
|
|
|
|
|
|
|
|
* {number}
|
|
|
|
|
|
|
|
|
|
This property refers to the value of underlying file descriptor of
|
|
|
|
|
`process.stdin`. The value is fixed at `0`. In [`Worker`][] threads,
|
|
|
|
|
this field does not exist.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.stdout`
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-11-07 23:23:41 +02:00
|
|
|
|
* {Stream}
|
|
|
|
|
|
2017-02-06 10:56:47 +01:00
|
|
|
|
The `process.stdout` property returns a stream connected to
|
|
|
|
|
`stdout` (fd `1`). It is a [`net.Socket`][] (which is a [Duplex][]
|
|
|
|
|
stream) unless fd `1` refers to a file, in which case it is
|
|
|
|
|
a [Writable][] stream.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2018-04-29 20:46:41 +03:00
|
|
|
|
For example, to copy `process.stdin` to `process.stdout`:
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { stdin, stdout } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
stdin.pipe(stdout);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { stdin, stdout } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
stdin.pipe(stdout);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2018-11-13 20:41:51 -08:00
|
|
|
|
`process.stdout` differs from other Node.js streams in important ways. See
|
2018-02-05 21:55:16 -08:00
|
|
|
|
[note on process I/O][] for more information.
|
2017-01-18 06:38:29 -08:00
|
|
|
|
|
2020-01-17 02:02:03 -05:00
|
|
|
|
### `process.stdout.fd`
|
|
|
|
|
|
|
|
|
|
* {number}
|
|
|
|
|
|
|
|
|
|
This property refers to the value of underlying file descriptor of
|
|
|
|
|
`process.stdout`. The value is fixed at `1`. In [`Worker`][] threads,
|
|
|
|
|
this field does not exist.
|
|
|
|
|
|
2017-01-18 06:38:29 -08:00
|
|
|
|
### A note on process I/O
|
2016-05-20 10:20:08 -04:00
|
|
|
|
|
2017-01-18 06:38:29 -08:00
|
|
|
|
`process.stdout` and `process.stderr` differ from other Node.js streams in
|
|
|
|
|
important ways:
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2017-01-18 06:38:29 -08:00
|
|
|
|
1. They are used internally by [`console.log()`][] and [`console.error()`][],
|
|
|
|
|
respectively.
|
2018-09-24 11:51:14 +02:00
|
|
|
|
2. Writes may be synchronous depending on what the stream is connected to
|
2017-09-10 10:48:40 -07:00
|
|
|
|
and whether the system is Windows or POSIX:
|
2021-10-10 21:55:04 -07:00
|
|
|
|
* Files: _synchronous_ on Windows and POSIX
|
|
|
|
|
* TTYs (Terminals): _asynchronous_ on Windows, _synchronous_ on POSIX
|
|
|
|
|
* Pipes (and sockets): _synchronous_ on Windows, _asynchronous_ on POSIX
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2017-05-26 13:51:15 -04:00
|
|
|
|
These behaviors are partly for historical reasons, as changing them would
|
2020-09-17 11:58:30 -07:00
|
|
|
|
create backward incompatibility, but they are also expected by some users.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2017-01-18 06:38:29 -08:00
|
|
|
|
Synchronous writes avoid problems such as output written with `console.log()` or
|
2017-04-23 16:51:32 -05:00
|
|
|
|
`console.error()` being unexpectedly interleaved, or not written at all if
|
2017-01-18 06:38:29 -08:00
|
|
|
|
`process.exit()` is called before an asynchronous write completes. See
|
|
|
|
|
[`process.exit()`][] for more information.
|
|
|
|
|
|
2021-10-10 21:55:04 -07:00
|
|
|
|
_**Warning**_: Synchronous writes block the event loop until the write has
|
2017-01-18 06:38:29 -08:00
|
|
|
|
completed. This can be near instantaneous in the case of output to a file, but
|
|
|
|
|
under high system load, pipes that are not being read at the receiving end, or
|
2022-03-02 23:55:53 +09:00
|
|
|
|
with slow terminals or file systems, it's possible for the event loop to be
|
2017-01-18 06:38:29 -08:00
|
|
|
|
blocked often enough and long enough to have severe negative performance
|
|
|
|
|
impacts. This may not be a problem when writing to an interactive terminal
|
|
|
|
|
session, but consider this particularly careful when doing production logging to
|
|
|
|
|
the process output streams.
|
|
|
|
|
|
|
|
|
|
To check if a stream is connected to a [TTY][] context, check the `isTTY`
|
|
|
|
|
property.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
|
|
|
|
For instance:
|
2019-08-29 09:28:03 -04:00
|
|
|
|
|
2016-09-20 07:44:22 +03:00
|
|
|
|
```console
|
2016-01-17 18:39:07 +01:00
|
|
|
|
$ node -p "Boolean(process.stdin.isTTY)"
|
|
|
|
|
true
|
|
|
|
|
$ echo "foo" | node -p "Boolean(process.stdin.isTTY)"
|
|
|
|
|
false
|
|
|
|
|
$ node -p "Boolean(process.stdout.isTTY)"
|
|
|
|
|
true
|
|
|
|
|
$ node -p "Boolean(process.stdout.isTTY)" | cat
|
|
|
|
|
false
|
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
See the [TTY][] documentation for more information.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.throwDeprecation`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-10-26 19:53:47 -04:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.9.12
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
2019-09-08 13:30:07 -05:00
|
|
|
|
The initial value of `process.throwDeprecation` indicates whether the
|
|
|
|
|
`--throw-deprecation` flag is set on the current Node.js process.
|
|
|
|
|
`process.throwDeprecation` is mutable, so whether or not deprecation
|
|
|
|
|
warnings result in errors may be altered at runtime. See the
|
2018-04-09 19:30:22 +03:00
|
|
|
|
documentation for the [`'warning'` event][process_warning] and the
|
2019-09-08 13:30:07 -05:00
|
|
|
|
[`emitWarning()` method][process_emit_warning] for more information.
|
|
|
|
|
|
|
|
|
|
```console
|
|
|
|
|
$ node --throw-deprecation -p "process.throwDeprecation"
|
|
|
|
|
true
|
|
|
|
|
$ node -p "process.throwDeprecation"
|
|
|
|
|
undefined
|
|
|
|
|
$ node
|
|
|
|
|
> process.emitWarning('test', 'DeprecationWarning');
|
|
|
|
|
undefined
|
|
|
|
|
> (node:26598) DeprecationWarning: test
|
|
|
|
|
> process.throwDeprecation = true;
|
|
|
|
|
true
|
|
|
|
|
> process.emitWarning('test', 'DeprecationWarning');
|
|
|
|
|
Thrown:
|
2019-09-23 16:57:03 +03:00
|
|
|
|
[DeprecationWarning: test] { name: 'DeprecationWarning' }
|
2019-09-08 13:30:07 -05:00
|
|
|
|
```
|
2017-10-26 19:53:47 -04:00
|
|
|
|
|
2025-02-21 15:14:02 +01:00
|
|
|
|
## `process.threadCpuUsage([previousValue])`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2025-02-25 11:26:36 -05:00
|
|
|
|
added: v23.9.0
|
2025-02-21 15:14:02 +01:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* `previousValue` {Object} A previous return value from calling
|
2025-03-13 05:15:45 -07:00
|
|
|
|
`process.threadCpuUsage()`
|
2025-02-21 15:14:02 +01:00
|
|
|
|
* Returns: {Object}
|
|
|
|
|
* `user` {integer}
|
|
|
|
|
* `system` {integer}
|
|
|
|
|
|
|
|
|
|
The `process.threadCpuUsage()` method returns the user and system CPU time usage of
|
|
|
|
|
the current worker thread, in an object with properties `user` and `system`, whose
|
|
|
|
|
values are microsecond values (millionth of a second).
|
|
|
|
|
|
|
|
|
|
The result of a previous call to `process.threadCpuUsage()` can be passed as the
|
|
|
|
|
argument to the function, to get a diff reading.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.title`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.104
|
|
|
|
|
-->
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* {string}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.title` property returns the current process title (i.e. returns
|
|
|
|
|
the current value of `ps`). Assigning a new value to `process.title` modifies
|
|
|
|
|
the current value of `ps`.
|
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
When a new value is assigned, different platforms will impose different maximum
|
|
|
|
|
length restrictions on the title. Usually such restrictions are quite limited.
|
|
|
|
|
For instance, on Linux and macOS, `process.title` is limited to the size of the
|
2020-09-14 17:28:27 -07:00
|
|
|
|
binary name plus the length of the command-line arguments because setting the
|
2018-04-02 08:38:48 +03:00
|
|
|
|
`process.title` overwrites the `argv` memory of the process. Node.js v0.8
|
2018-02-05 21:55:16 -08:00
|
|
|
|
allowed for longer process title strings by also overwriting the `environ`
|
|
|
|
|
memory but that was potentially insecure and confusing in some (rather obscure)
|
|
|
|
|
cases.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2020-08-04 16:59:43 -07:00
|
|
|
|
Assigning a value to `process.title` might not result in an accurate label
|
|
|
|
|
within process manager applications such as macOS Activity Monitor or Windows
|
|
|
|
|
Services Manager.
|
2020-07-29 17:23:51 -05:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.traceDeprecation`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2017-10-26 19:53:47 -04:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.8.0
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
* {boolean}
|
|
|
|
|
|
|
|
|
|
The `process.traceDeprecation` property indicates whether the
|
|
|
|
|
`--trace-deprecation` flag is set on the current Node.js process. See the
|
2018-04-09 19:30:22 +03:00
|
|
|
|
documentation for the [`'warning'` event][process_warning] and the
|
|
|
|
|
[`emitWarning()` method][process_emit_warning] for more information about this
|
2017-10-26 19:53:47 -04:00
|
|
|
|
flag's behavior.
|
|
|
|
|
|
2020-04-07 16:17:14 -07:00
|
|
|
|
## `process.umask()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.19
|
2020-03-26 01:07:31 -04:00
|
|
|
|
changes:
|
2020-09-28 10:54:13 -07:00
|
|
|
|
- version:
|
|
|
|
|
- v14.0.0
|
2020-10-01 20:23:33 +02:00
|
|
|
|
- v12.19.0
|
2020-03-26 01:07:31 -04:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/32499
|
|
|
|
|
description: Calling `process.umask()` with no arguments is deprecated.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2020-04-07 16:17:14 -07:00
|
|
|
|
> Stability: 0 - Deprecated. Calling `process.umask()` with no argument causes
|
|
|
|
|
> the process-wide umask to be written twice. This introduces a race condition
|
|
|
|
|
> between threads, and is a potential security vulnerability. There is no safe,
|
|
|
|
|
> cross-platform alternative API.
|
|
|
|
|
|
|
|
|
|
`process.umask()` returns the Node.js process's file mode creation mask. Child
|
|
|
|
|
processes inherit the mask from the parent process.
|
|
|
|
|
|
|
|
|
|
## `process.umask(mask)`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2020-04-07 16:17:14 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.19
|
|
|
|
|
-->
|
2020-03-26 01:07:31 -04:00
|
|
|
|
|
2019-12-27 10:18:42 -05:00
|
|
|
|
* `mask` {string|integer}
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2020-04-07 16:17:14 -07:00
|
|
|
|
`process.umask(mask)` sets the Node.js process's file mode creation mask. Child
|
|
|
|
|
processes inherit the mask from the parent process. Returns the previous mask.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { umask } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
const newmask = 0o022;
|
|
|
|
|
const oldmask = umask(newmask);
|
|
|
|
|
console.log(
|
2022-11-17 08:19:12 -05:00
|
|
|
|
`Changed umask from ${oldmask.toString(8)} to ${newmask.toString(8)}`,
|
2021-06-15 10:09:29 -07:00
|
|
|
|
);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { umask } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
|
const newmask = 0o022;
|
2021-06-15 10:09:29 -07:00
|
|
|
|
const oldmask = umask(newmask);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
console.log(
|
2022-11-17 08:19:12 -05:00
|
|
|
|
`Changed umask from ${oldmask.toString(8)} to ${newmask.toString(8)}`,
|
2016-01-17 18:39:07 +01:00
|
|
|
|
);
|
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2020-04-07 16:17:14 -07:00
|
|
|
|
In [`Worker`][] threads, `process.umask(mask)` will throw an exception.
|
2017-09-01 17:03:41 +02:00
|
|
|
|
|
2024-12-28 16:06:52 -08:00
|
|
|
|
## `process.unref(maybeRefable)`
|
|
|
|
|
|
|
|
|
|
<!-- YAML
|
2025-02-06 11:04:25 +01:00
|
|
|
|
added:
|
|
|
|
|
- v23.6.0
|
|
|
|
|
- v22.14.0
|
2024-12-28 16:06:52 -08:00
|
|
|
|
-->
|
|
|
|
|
|
2025-01-10 15:40:28 +01:00
|
|
|
|
> Stability: 1 - Experimental
|
|
|
|
|
|
2024-12-28 16:06:52 -08:00
|
|
|
|
* `maybeUnfefable` {any} An object that may be "unref'd".
|
|
|
|
|
|
|
|
|
|
An object is "unrefable" if it implements the Node.js "Refable protocol".
|
2025-01-10 15:40:28 +01:00
|
|
|
|
Specifically, this means that the object implements the `Symbol.for('nodejs.ref')`
|
|
|
|
|
and `Symbol.for('nodejs.unref')` methods. "Ref'd" objects will keep the Node.js
|
2024-12-28 16:06:52 -08:00
|
|
|
|
event loop alive, while "unref'd" objects will not. Historically, this was
|
|
|
|
|
implemented by using `ref()` and `unref()` methods directly on the objects.
|
|
|
|
|
This pattern, however, is being deprecated in favor of the "Refable protocol"
|
|
|
|
|
in order to better support Web Platform API types whose APIs cannot be modified
|
|
|
|
|
to add `ref()` and `unref()` methods but still need to support that behavior.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.uptime()`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.5.0
|
|
|
|
|
-->
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* Returns: {number}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.uptime()` method returns the number of seconds the current Node.js
|
|
|
|
|
process has been running.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2018-02-05 21:55:16 -08:00
|
|
|
|
The return value includes fractions of a second. Use `Math.floor()` to get whole
|
|
|
|
|
seconds.
|
2017-04-09 22:39:59 +03:00
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.version`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.1.3
|
|
|
|
|
-->
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2017-03-05 18:03:39 +01:00
|
|
|
|
* {string}
|
2016-11-07 23:23:41 +02:00
|
|
|
|
|
2020-08-24 12:30:44 -07:00
|
|
|
|
The `process.version` property contains the Node.js version string.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { version } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Version: ${version}`);
|
|
|
|
|
// Version: v14.8.0
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { version } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(`Version: ${version}`);
|
2020-08-24 12:30:44 -07:00
|
|
|
|
// Version: v14.8.0
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2020-08-24 12:30:44 -07:00
|
|
|
|
To get the version string without the prepended _v_, use
|
|
|
|
|
`process.versions.node`.
|
|
|
|
|
|
2019-12-24 13:41:38 -08:00
|
|
|
|
## `process.versions`
|
2021-10-10 21:55:04 -07:00
|
|
|
|
|
2016-05-04 21:57:59 -07:00
|
|
|
|
<!-- YAML
|
|
|
|
|
added: v0.2.0
|
2017-02-21 23:38:47 +01:00
|
|
|
|
changes:
|
2017-09-01 09:50:47 -07:00
|
|
|
|
- version: v9.0.0
|
2017-09-29 13:39:26 +02:00
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/15785
|
|
|
|
|
description: The `v8` property now includes a Node.js specific suffix.
|
2020-10-01 20:49:03 +02:00
|
|
|
|
- version: v4.2.0
|
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/3102
|
|
|
|
|
description: The `icu` property is now supported.
|
2016-05-04 21:57:59 -07:00
|
|
|
|
-->
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2016-11-07 23:23:41 +02:00
|
|
|
|
* {Object}
|
|
|
|
|
|
2016-05-27 12:24:05 -07:00
|
|
|
|
The `process.versions` property returns an object listing the version strings of
|
2016-12-22 17:04:10 -08:00
|
|
|
|
Node.js and its dependencies. `process.versions.modules` indicates the current
|
|
|
|
|
ABI version, which is increased whenever a C++ API changes. Node.js will refuse
|
|
|
|
|
to load modules that were compiled against a different module ABI version.
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2021-06-15 10:09:29 -07:00
|
|
|
|
```mjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
import { versions } from 'node:process';
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(versions);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```cjs
|
2022-04-20 10:23:41 +02:00
|
|
|
|
const { versions } = require('node:process');
|
2021-06-15 10:09:29 -07:00
|
|
|
|
|
|
|
|
|
console.log(versions);
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2017-04-21 07:53:00 +03:00
|
|
|
|
Will generate an object similar to:
|
2015-11-05 11:00:46 -05:00
|
|
|
|
|
2019-03-29 23:50:23 +08:00
|
|
|
|
```console
|
2024-04-30 17:44:48 +02:00
|
|
|
|
{ node: '23.0.0',
|
|
|
|
|
acorn: '8.11.3',
|
|
|
|
|
ada: '2.7.8',
|
|
|
|
|
ares: '1.28.1',
|
|
|
|
|
base64: '0.5.2',
|
|
|
|
|
brotli: '1.1.0',
|
2023-05-17 16:53:32 +04:00
|
|
|
|
cjs_module_lexer: '1.2.2',
|
2024-04-30 17:44:48 +02:00
|
|
|
|
cldr: '45.0',
|
|
|
|
|
icu: '75.1',
|
|
|
|
|
llhttp: '9.2.1',
|
|
|
|
|
modules: '127',
|
|
|
|
|
napi: '9',
|
|
|
|
|
nghttp2: '1.61.0',
|
2023-05-17 16:53:32 +04:00
|
|
|
|
nghttp3: '0.7.0',
|
2024-04-30 17:44:48 +02:00
|
|
|
|
ngtcp2: '1.3.0',
|
|
|
|
|
openssl: '3.0.13+quic',
|
|
|
|
|
simdjson: '3.8.0',
|
|
|
|
|
simdutf: '5.2.4',
|
2023-09-15 10:32:14 -04:00
|
|
|
|
sqlite: '3.46.0',
|
2024-04-30 17:44:48 +02:00
|
|
|
|
tz: '2024a',
|
|
|
|
|
undici: '6.13.0',
|
|
|
|
|
unicode: '15.1',
|
|
|
|
|
uv: '1.48.0',
|
|
|
|
|
uvwasi: '0.0.20',
|
|
|
|
|
v8: '12.4.254.14-node.11',
|
|
|
|
|
zlib: '1.3.0.1-motley-7d77fb7' }
|
2016-01-17 18:39:07 +01:00
|
|
|
|
```
|
2014-06-21 17:09:04 -07:00
|
|
|
|
|
2020-06-14 14:49:34 -07:00
|
|
|
|
## Exit codes
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
|
|
|
|
Node.js will normally exit with a `0` status code when no more async
|
2018-04-02 08:38:48 +03:00
|
|
|
|
operations are pending. The following status codes are used in other
|
2016-05-27 12:24:05 -07:00
|
|
|
|
cases:
|
|
|
|
|
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `1` **Uncaught Fatal Exception**: There was an uncaught exception,
|
2016-05-27 12:24:05 -07:00
|
|
|
|
and it was not handled by a domain or an [`'uncaughtException'`][] event
|
|
|
|
|
handler.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `2`: Unused (reserved by Bash for builtin misuse)
|
|
|
|
|
* `3` **Internal JavaScript Parse Error**: The JavaScript source code
|
2020-02-11 14:59:59 -10:00
|
|
|
|
internal in the Node.js bootstrapping process caused a parse error. This
|
2016-05-27 12:24:05 -07:00
|
|
|
|
is extremely rare, and generally can only happen during development
|
|
|
|
|
of Node.js itself.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `4` **Internal JavaScript Evaluation Failure**: The JavaScript
|
2020-02-11 14:59:59 -10:00
|
|
|
|
source code internal in the Node.js bootstrapping process failed to
|
2018-04-02 08:38:48 +03:00
|
|
|
|
return a function value when evaluated. This is extremely rare, and
|
2016-05-27 12:24:05 -07:00
|
|
|
|
generally can only happen during development of Node.js itself.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `5` **Fatal Error**: There was a fatal unrecoverable error in V8.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
Typically a message will be printed to stderr with the prefix `FATAL
|
|
|
|
|
ERROR`.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `6` **Non-function Internal Exception Handler**: There was an
|
2016-05-27 12:24:05 -07:00
|
|
|
|
uncaught exception, but the internal fatal exception handler
|
|
|
|
|
function was somehow set to a non-function, and could not be called.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `7` **Internal Exception Handler Run-Time Failure**: There was an
|
2016-05-27 12:24:05 -07:00
|
|
|
|
uncaught exception, and the internal fatal exception handler
|
2018-04-02 08:38:48 +03:00
|
|
|
|
function itself threw an error while attempting to handle it. This
|
2018-04-29 20:46:41 +03:00
|
|
|
|
can happen, for example, if an [`'uncaughtException'`][] or
|
2016-05-27 12:24:05 -07:00
|
|
|
|
`domain.on('error')` handler throws an error.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `8`: Unused. In previous versions of Node.js, exit code 8 sometimes
|
2016-05-27 12:24:05 -07:00
|
|
|
|
indicated an uncaught exception.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `9` **Invalid Argument**: Either an unknown option was specified,
|
2016-05-27 12:24:05 -07:00
|
|
|
|
or an option requiring a value was provided without a value.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `10` **Internal JavaScript Run-Time Failure**: The JavaScript
|
2020-02-11 14:59:59 -10:00
|
|
|
|
source code internal in the Node.js bootstrapping process threw an error
|
2018-04-02 08:38:48 +03:00
|
|
|
|
when the bootstrapping function was called. This is extremely rare,
|
2016-05-27 12:24:05 -07:00
|
|
|
|
and generally can only happen during development of Node.js itself.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `12` **Invalid Debug Argument**: The `--inspect` and/or `--inspect-brk`
|
2017-04-03 15:16:39 -07:00
|
|
|
|
options were set, but the port number chosen was invalid or unavailable.
|
2024-03-07 05:43:44 +01:00
|
|
|
|
* `13` **Unsettled Top-Level Await**: `await` was used outside of a function
|
|
|
|
|
in the top-level code, but the passed `Promise` never settled.
|
2022-06-22 15:24:34 +08:00
|
|
|
|
* `14` **Snapshot Failure**: Node.js was started to build a V8 startup
|
|
|
|
|
snapshot and it failed because certain requirements of the state of
|
|
|
|
|
the application were not met.
|
2019-10-23 21:28:42 -07:00
|
|
|
|
* `>128` **Signal Exits**: If Node.js receives a fatal signal such as
|
2016-05-27 12:24:05 -07:00
|
|
|
|
`SIGKILL` or `SIGHUP`, then its exit code will be `128` plus the
|
2018-04-02 08:38:48 +03:00
|
|
|
|
value of the signal code. This is a standard POSIX practice, since
|
2016-05-27 12:24:05 -07:00
|
|
|
|
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.
|
2017-06-24 15:37:59 -04:00
|
|
|
|
For example, signal `SIGABRT` has value `6`, so the expected exit
|
|
|
|
|
code will be `128` + `6`, or `134`.
|
2016-05-27 12:24:05 -07:00
|
|
|
|
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[Advanced serialization for `child_process`]: child_process.md#advanced-serialization
|
2024-09-15 14:29:18 +02:00
|
|
|
|
[Android building]: https://github.com/nodejs/node/blob/HEAD/BUILDING.md#android
|
2020-09-17 18:53:37 +02:00
|
|
|
|
[Child Process]: child_process.md
|
|
|
|
|
[Cluster]: cluster.md
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[Duplex]: stream.md#duplex-and-transform-streams
|
2024-02-27 13:29:59 +00:00
|
|
|
|
[Event Loop]: https://nodejs.org/en/learn/asynchronous-work/event-loop-timers-and-nexttick#understanding-processnexttick
|
2020-09-17 18:53:37 +02:00
|
|
|
|
[LTS]: https://github.com/nodejs/Release
|
2023-02-23 15:11:51 -03:00
|
|
|
|
[Permission Model]: permissions.md#permission-model
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[Readable]: stream.md#readable-streams
|
|
|
|
|
[Signal Events]: #signal-events
|
2021-06-19 15:32:31 +08:00
|
|
|
|
[Source Map]: https://sourcemaps.info/spec.html
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[Stream compatibility]: stream.md#compatibility-with-older-nodejs-versions
|
|
|
|
|
[TTY]: tty.md#tty
|
|
|
|
|
[Writable]: stream.md#writable-streams
|
|
|
|
|
[`'exit'`]: #event-exit
|
|
|
|
|
[`'message'`]: child_process.md#event-message
|
|
|
|
|
[`'uncaughtException'`]: #event-uncaughtexception
|
2023-09-08 20:43:51 +05:30
|
|
|
|
[`--no-deprecation`]: cli.md#--no-deprecation
|
2024-12-12 09:11:58 -03:00
|
|
|
|
[`--permission`]: cli.md#--permission
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[`--unhandled-rejections`]: cli.md#--unhandled-rejectionsmode
|
2020-09-14 17:09:13 +02:00
|
|
|
|
[`Buffer`]: buffer.md
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[`ChildProcess.disconnect()`]: child_process.md#subprocessdisconnect
|
|
|
|
|
[`ChildProcess.send()`]: child_process.md#subprocesssendmessage-sendhandle-options-callback
|
|
|
|
|
[`ChildProcess`]: child_process.md#class-childprocess
|
|
|
|
|
[`Error`]: errors.md#class-error
|
|
|
|
|
[`EventEmitter`]: events.md#class-eventemitter
|
|
|
|
|
[`NODE_OPTIONS`]: cli.md#node_optionsoptions
|
2020-09-17 18:53:37 +02:00
|
|
|
|
[`Promise.race()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/race
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[`Worker`]: worker_threads.md#class-worker
|
|
|
|
|
[`Worker` constructor]: worker_threads.md#new-workerfilename-options
|
|
|
|
|
[`console.error()`]: console.md#consoleerrordata-args
|
|
|
|
|
[`console.log()`]: console.md#consolelogdata-args
|
2020-09-14 17:09:13 +02:00
|
|
|
|
[`domain`]: domain.md
|
2025-01-23 22:44:10 +00:00
|
|
|
|
[`module.getSourceMapsSupport()`]: module.md#modulegetsourcemapssupport
|
2024-04-30 18:24:36 +02:00
|
|
|
|
[`module.isBuiltin(id)`]: module.md#moduleisbuiltinmodulename
|
2025-01-23 22:44:10 +00:00
|
|
|
|
[`module.setSourceMapsSupport()`]: module.md#modulesetsourcemapssupportenabled-options
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[`net.Server`]: net.md#class-netserver
|
|
|
|
|
[`net.Socket`]: net.md#class-netsocket
|
|
|
|
|
[`os.constants.dlopen`]: os.md#dlopen-constants
|
2024-07-09 09:16:04 +02:00
|
|
|
|
[`postMessageToThread()`]: worker_threads.md#workerpostmessagetothreadthreadid-value-transferlist-timeout
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[`process.argv`]: #processargv
|
|
|
|
|
[`process.config`]: #processconfig
|
|
|
|
|
[`process.execPath`]: #processexecpath
|
|
|
|
|
[`process.exit()`]: #processexitcode
|
2022-09-11 18:53:40 +02:00
|
|
|
|
[`process.exitCode`]: #processexitcode_1
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[`process.hrtime()`]: #processhrtimetime
|
|
|
|
|
[`process.hrtime.bigint()`]: #processhrtimebigint
|
|
|
|
|
[`process.kill()`]: #processkillpid-signal
|
|
|
|
|
[`process.setUncaughtExceptionCaptureCallback()`]: #processsetuncaughtexceptioncapturecallbackfn
|
2016-02-19 01:38:21 +03:00
|
|
|
|
[`promise.catch()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/catch
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[`queueMicrotask()`]: globals.md#queuemicrotaskcallback
|
|
|
|
|
[`readable.read()`]: stream.md#readablereadsize
|
|
|
|
|
[`require()`]: globals.md#require
|
2024-04-30 18:24:36 +02:00
|
|
|
|
[`require.cache`]: modules.md#requirecache
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[`require.main`]: modules.md#accessing-the-main-module
|
|
|
|
|
[`subprocess.kill()`]: child_process.md#subprocesskillsignal
|
|
|
|
|
[`v8.setFlagsFromString()`]: v8.md#v8setflagsfromstringflags
|
2024-04-30 18:24:36 +02:00
|
|
|
|
[built-in modules with mandatory `node:` prefix]: modules.md#built-in-modules-with-mandatory-node-prefix
|
2020-09-14 17:09:13 +02:00
|
|
|
|
[debugger]: debugger.md
|
2020-12-31 14:53:05 -08:00
|
|
|
|
[deprecation code]: deprecations.md
|
2024-10-07 17:26:10 +02:00
|
|
|
|
[loading ECMAScript modules using `require()`]: modules.md#loading-ecmascript-modules-using-require
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[note on process I/O]: #a-note-on-process-io
|
|
|
|
|
[process.cpuUsage]: #processcpuusagepreviousvalue
|
|
|
|
|
[process_emit_warning]: #processemitwarningwarning-type-code-ctor
|
|
|
|
|
[process_warning]: #event-warning
|
2020-09-14 17:09:13 +02:00
|
|
|
|
[report documentation]: report.md
|
2021-07-04 20:39:17 -07:00
|
|
|
|
[terminal raw mode]: tty.md#readstreamsetrawmodemode
|
2024-03-13 12:06:49 +08:00
|
|
|
|
[uv_get_available_memory]: https://docs.libuv.org/en/v1.x/misc.html#c.uv_get_available_memory
|
2023-01-25 08:47:08 +08:00
|
|
|
|
[uv_get_constrained_memory]: https://docs.libuv.org/en/v1.x/misc.html#c.uv_get_constrained_memory
|
2020-06-30 00:16:11 +09:00
|
|
|
|
[uv_rusage_t]: https://docs.libuv.org/en/v1.x/misc.html#c.uv_rusage_t
|
2019-06-02 13:33:47 +02:00
|
|
|
|
[wikipedia_major_fault]: https://en.wikipedia.org/wiki/Page_fault#Major
|
2020-09-17 18:53:37 +02:00
|
|
|
|
[wikipedia_minor_fault]: https://en.wikipedia.org/wiki/Page_fault#Minor
|