2016-03-18 18:26:41 +01:00
|
|
|
# Command Line Options
|
|
|
|
|
2017-01-23 04:16:21 +01:00
|
|
|
<!--introduced_in=v5.9.1-->
|
2016-03-18 18:26:41 +01:00
|
|
|
<!--type=misc-->
|
|
|
|
|
2016-05-25 02:04:39 +02:00
|
|
|
Node.js comes with a variety of CLI options. These options expose built-in
|
2016-03-18 18:26:41 +01:00
|
|
|
debugging, multiple ways to execute scripts, and other helpful runtime options.
|
|
|
|
|
2017-04-26 19:16:12 +02:00
|
|
|
To view this documentation as a manual page in a terminal, run `man node`.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
|
|
|
## Synopsis
|
|
|
|
|
2017-11-17 06:41:14 +01:00
|
|
|
`node [options] [V8 options] [script.js | -e "script" | -] [--] [arguments]`
|
2016-03-18 18:26:41 +01:00
|
|
|
|
|
|
|
`node debug [script.js | -e "script" | <host>:<port>] …`
|
|
|
|
|
|
|
|
`node --v8-options`
|
|
|
|
|
|
|
|
Execute without arguments to start the [REPL][].
|
|
|
|
|
|
|
|
_For more info about `node debug`, please see the [debugger][] documentation._
|
|
|
|
|
|
|
|
## Options
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `-`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v8.0.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Alias for stdin, analogous to the use of - in other command line utilities,
|
|
|
|
meaning that the script will be read from stdin, and the rest of the options
|
|
|
|
are passed to that script.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v6.11.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Indicate the end of node options. Pass the rest of the arguments to the script.
|
|
|
|
If no script filename or eval/print script is supplied prior to this, then
|
|
|
|
the next argument will be used as a script filename.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--abort-on-uncaught-exception`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.10
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Aborting instead of exiting causes a core file to be generated for post-mortem
|
|
|
|
analysis using a debugger (such as `lldb`, `gdb`, and `mdb`).
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
If this flag is passed, the behavior can still be set to not abort through
|
|
|
|
[`process.setUncaughtExceptionCaptureCallback()`][] (and through usage of the
|
|
|
|
`domain` module that uses it).
|
2017-09-23 11:37:34 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--enable-fips`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v6.0.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Enable FIPS-compliant crypto at startup. (Requires Node.js to be built with
|
2018-04-29 13:16:44 +02:00
|
|
|
`./configure --openssl-fips`.)
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--experimental-modules`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v8.5.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Enable experimental ES module support and caching modules.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-18 17:50:35 +02:00
|
|
|
### `--experimental-repl-await`
|
|
|
|
<!-- YAML
|
2018-03-02 18:53:46 +01:00
|
|
|
added: v10.0.0
|
2018-04-18 17:50:35 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
Enable experimental top-level `await` keyword support in REPL.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--experimental-vm-modules`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v9.6.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Enable experimental ES Module support in the `vm` module.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-06-24 18:58:56 +02:00
|
|
|
### `--experimental-worker`
|
|
|
|
<!-- YAML
|
|
|
|
added: v10.5.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
Enable experimental worker threads using the `worker_threads` module.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--force-fips`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v6.0.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Force FIPS-compliant crypto on startup. (Cannot be disabled from script code.)
|
2018-04-29 13:16:44 +02:00
|
|
|
(Same requirements as `--enable-fips`.)
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--icu-data-dir=file`
|
2017-03-16 03:34:51 +01:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.11.15
|
2017-03-16 03:34:51 +01:00
|
|
|
-->
|
|
|
|
|
2018-04-29 13:16:44 +02:00
|
|
|
Specify ICU data load path. (Overrides `NODE_ICU_DATA`.)
|
2017-03-16 03:34:51 +01:00
|
|
|
|
2017-03-28 17:54:30 +02:00
|
|
|
### `--inspect-brk[=[host:]port]`
|
2017-03-16 03:34:51 +01:00
|
|
|
<!-- YAML
|
|
|
|
added: v7.6.0
|
|
|
|
-->
|
|
|
|
|
2018-04-29 19:46:41 +02:00
|
|
|
Activate inspector on `host:port` and break at start of user script.
|
|
|
|
Default `host:port` is `127.0.0.1:9229`.
|
2017-04-22 05:34:54 +02:00
|
|
|
|
|
|
|
### `--inspect-port=[host:]port`
|
|
|
|
<!-- YAML
|
|
|
|
added: v7.6.0
|
|
|
|
-->
|
|
|
|
|
2018-04-29 19:46:41 +02:00
|
|
|
Set the `host:port` to be used when the inspector is activated.
|
2017-04-22 05:34:54 +02:00
|
|
|
Useful when activating the inspector by sending the `SIGUSR1` signal.
|
|
|
|
|
2018-04-29 19:46:41 +02:00
|
|
|
Default host is `127.0.0.1`.
|
2017-03-16 03:34:51 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--inspect[=[host:]port]`
|
|
|
|
<!-- YAML
|
|
|
|
added: v6.3.0
|
|
|
|
-->
|
|
|
|
|
2018-04-29 19:46:41 +02:00
|
|
|
Activate inspector on `host:port`. Default is `127.0.0.1:9229`.
|
2018-04-08 08:33:19 +02:00
|
|
|
|
|
|
|
V8 inspector integration allows tools such as Chrome DevTools and IDEs to debug
|
|
|
|
and profile Node.js instances. The tools attach to Node.js instances via a
|
2018-04-17 19:04:03 +02:00
|
|
|
tcp port and communicate using the [Chrome DevTools Protocol][].
|
2018-04-08 08:33:19 +02:00
|
|
|
|
|
|
|
### `--napi-modules`
|
|
|
|
<!-- YAML
|
|
|
|
added: v7.10.0
|
|
|
|
-->
|
|
|
|
|
2018-04-25 19:49:48 +02:00
|
|
|
This option is a no-op. It is kept for compatibility.
|
2018-04-08 08:33:19 +02:00
|
|
|
|
2016-03-18 18:26:41 +01:00
|
|
|
### `--no-deprecation`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.8.0
|
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
|
|
|
Silence deprecation warnings.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--no-force-async-hooks-checks`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v9.0.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Disables runtime checks for `async_hooks`. These will still be enabled
|
|
|
|
dynamically when `async_hooks` is enabled.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--no-warnings`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v6.0.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Silence all process warnings (including deprecations).
|
|
|
|
|
|
|
|
### `--openssl-config=file`
|
|
|
|
<!-- YAML
|
|
|
|
added: v6.9.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
Load an OpenSSL configuration file on startup. Among other uses, this can be
|
|
|
|
used to enable FIPS-compliant crypto if Node.js is built with
|
|
|
|
`./configure --openssl-fips`.
|
|
|
|
|
2017-03-11 21:18:53 +01:00
|
|
|
### `--pending-deprecation`
|
|
|
|
<!-- YAML
|
2017-03-16 04:26:14 +01:00
|
|
|
added: v8.0.0
|
2017-03-11 21:18:53 +01:00
|
|
|
-->
|
|
|
|
|
|
|
|
Emit pending deprecation warnings.
|
|
|
|
|
2018-02-06 06:55:16 +01:00
|
|
|
Pending deprecations are generally identical to a runtime deprecation with the
|
|
|
|
notable exception that they are turned *off* by default and will not be emitted
|
|
|
|
unless either the `--pending-deprecation` command line flag, or the
|
2017-03-11 21:18:53 +01:00
|
|
|
`NODE_PENDING_DEPRECATION=1` environment variable, is set. Pending deprecations
|
|
|
|
are used to provide a kind of selective "early warning" mechanism that
|
|
|
|
developers may leverage to detect deprecated API usage.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--preserve-symlinks`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v6.3.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-01-20 20:38:35 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Instructs the module loader to preserve symbolic links when resolving and
|
|
|
|
caching modules.
|
2016-01-20 20:38:35 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
By default, when Node.js loads a module from a path that is symbolically linked
|
|
|
|
to a different on-disk location, Node.js will dereference the link and use the
|
|
|
|
actual on-disk "real path" of the module as both an identifier and as a root
|
|
|
|
path to locate other dependency modules. In most cases, this default behavior
|
|
|
|
is acceptable. However, when using symbolically linked peer dependencies, as
|
|
|
|
illustrated in the example below, the default behavior causes an exception to
|
|
|
|
be thrown if `moduleA` attempts to require `moduleB` as a peer dependency:
|
2017-06-26 20:00:34 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
```text
|
|
|
|
{appDir}
|
|
|
|
├── app
|
|
|
|
│ ├── index.js
|
|
|
|
│ └── node_modules
|
|
|
|
│ ├── moduleA -> {appDir}/moduleA
|
|
|
|
│ └── moduleB
|
|
|
|
│ ├── index.js
|
|
|
|
│ └── package.json
|
|
|
|
└── moduleA
|
|
|
|
├── index.js
|
|
|
|
└── package.json
|
|
|
|
```
|
2017-03-20 22:55:26 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
The `--preserve-symlinks` command line flag instructs Node.js to use the
|
|
|
|
symlink path for modules as opposed to the real path, allowing symbolically
|
|
|
|
linked peer dependencies to be found.
|
2017-11-20 19:57:20 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Note, however, that using `--preserve-symlinks` can have other side effects.
|
|
|
|
Specifically, symbolically linked *native* modules can fail to load if those
|
|
|
|
are linked from more than one location in the dependency tree (Node.js would
|
|
|
|
see those as two separate modules and would attempt to load the module multiple
|
|
|
|
times, causing an exception to be thrown).
|
|
|
|
|
2018-04-10 09:40:56 +02:00
|
|
|
The `--preserve-symlinks` flag does not apply to the main module, which allows
|
|
|
|
`node --preserve-symlinks node_module/.bin/<foo>` to work. To apply the same
|
|
|
|
behavior for the main module, also use `--preserve-symlinks-main`.
|
|
|
|
|
|
|
|
### `--preserve-symlinks-main`
|
|
|
|
<!-- YAML
|
2018-05-14 20:01:36 +02:00
|
|
|
added: v10.2.0
|
2018-04-10 09:40:56 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
Instructs the module loader to preserve symbolic links when resolving and
|
|
|
|
caching the main module (`require.main`).
|
|
|
|
|
|
|
|
This flag exists so that the main module can be opted-in to the same behavior
|
|
|
|
that `--preserve-symlinks` gives to all other imports; they are separate flags,
|
|
|
|
however, for backward compatibility with older Node.js versions.
|
|
|
|
|
|
|
|
Note that `--preserve-symlinks-main` does not imply `--preserve-symlinks`; it
|
|
|
|
is expected that `--preserve-symlinks-main` will be used in addition to
|
|
|
|
`--preserve-symlinks` when it is not desirable to follow symlinks before
|
|
|
|
resolving relative paths.
|
|
|
|
|
|
|
|
See `--preserve-symlinks` for more information.
|
|
|
|
|
2018-05-20 12:05:08 +02:00
|
|
|
### `--prof`
|
|
|
|
<!-- YAML
|
|
|
|
added: v2.0.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
Generate V8 profiler output.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--prof-process`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v5.2.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-01-20 20:38:35 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Process V8 profiler output generated using the V8 option `--prof`.
|
|
|
|
|
2016-12-04 19:38:35 +01:00
|
|
|
### `--redirect-warnings=file`
|
|
|
|
<!-- YAML
|
2017-03-16 04:26:14 +01:00
|
|
|
added: v8.0.0
|
2016-12-04 19:38:35 +01:00
|
|
|
-->
|
|
|
|
|
|
|
|
Write process warnings to the given file instead of printing to stderr. The
|
|
|
|
file will be created if it does not exist, and will be appended to if it does.
|
|
|
|
If an error occurs while attempting to write the warning to the file, the
|
|
|
|
warning will be written to stderr instead.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--throw-deprecation`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.11.14
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Throw errors for deprecations.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-06-23 01:16:03 +02:00
|
|
|
### `--title=title`
|
|
|
|
<!-- YAML
|
|
|
|
added: REPLACEME
|
|
|
|
-->
|
|
|
|
|
|
|
|
Set `process.title` on startup.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--tls-cipher-list=list`
|
2017-10-19 12:43:40 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v4.0.0
|
2017-10-19 12:43:40 +02:00
|
|
|
-->
|
|
|
|
|
2018-04-29 13:16:44 +02:00
|
|
|
Specify an alternative default TLS cipher list. Requires Node.js to be built
|
|
|
|
with crypto support (default).
|
2017-10-19 12:43:40 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--trace-deprecation`
|
2016-08-05 23:04:25 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.8.0
|
2016-08-05 23:04:25 +02:00
|
|
|
-->
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Print stack traces for deprecations.
|
|
|
|
|
2016-08-05 23:04:25 +02:00
|
|
|
### `--trace-event-categories`
|
|
|
|
<!-- YAML
|
2017-02-28 04:49:09 +01:00
|
|
|
added: v7.7.0
|
2016-08-05 23:04:25 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
A comma separated list of categories that should be traced when trace event
|
|
|
|
tracing is enabled using `--trace-events-enabled`.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-01-31 17:12:09 +01:00
|
|
|
### `--trace-event-file-pattern`
|
|
|
|
<!-- YAML
|
2018-03-06 22:58:16 +01:00
|
|
|
added: v9.8.0
|
2018-01-31 17:12:09 +01:00
|
|
|
-->
|
|
|
|
|
|
|
|
Template string specifying the filepath for the trace event data, it
|
|
|
|
supports `${rotation}` and `${pid}`.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--trace-events-enabled`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v7.7.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Enables the collection of trace event tracing information.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--trace-sync-io`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v2.1.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-05-03 01:31:20 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Prints a stack trace whenever synchronous I/O is detected after the first turn
|
|
|
|
of the event loop.
|
2016-05-03 01:31:20 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--trace-warnings`
|
|
|
|
<!-- YAML
|
|
|
|
added: v6.0.0
|
|
|
|
-->
|
2016-05-03 01:31:20 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Print stack traces for process warnings (including deprecations).
|
2016-05-03 01:31:20 +02:00
|
|
|
|
2016-03-18 18:26:41 +01:00
|
|
|
### `--track-heap-objects`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v2.4.0
|
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
|
|
|
Track heap object allocations for heap snapshots.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--use-bundled-ca`, `--use-openssl-ca`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v6.11.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Use bundled Mozilla CA store as supplied by current Node.js version
|
|
|
|
or use OpenSSL's default CA store. The default store is selectable
|
|
|
|
at build-time.
|
|
|
|
|
|
|
|
The bundled CA store, as supplied by Node.js, is a snapshot of Mozilla CA store
|
|
|
|
that is fixed at release time. It is identical on all supported platforms.
|
|
|
|
|
|
|
|
Using OpenSSL store allows for external modifications of the store. For most
|
|
|
|
Linux and BSD distributions, this store is maintained by the distribution
|
|
|
|
maintainers and system administrators. OpenSSL CA store location is dependent on
|
|
|
|
configuration of the OpenSSL library but this can be altered at runtime using
|
|
|
|
environment variables.
|
|
|
|
|
|
|
|
See `SSL_CERT_DIR` and `SSL_CERT_FILE`.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
|
|
|
### `--v8-options`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.3
|
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2017-11-17 06:41:14 +01:00
|
|
|
Print V8 command line options.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-02-06 06:55:16 +01:00
|
|
|
V8 options allow words to be separated by both dashes (`-`) or
|
2017-05-20 22:15:58 +02:00
|
|
|
underscores (`_`).
|
2016-05-02 23:02:31 +02:00
|
|
|
|
|
|
|
For example, `--stack-trace-limit` is equivalent to `--stack_trace_limit`.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `--v8-pool-size=num`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v5.10.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Set V8's thread pool size which will be used to allocate background jobs.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
If set to `0` then V8 will choose an appropriate size of the thread pool based
|
|
|
|
on the number of online processors.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
If the value provided is larger than V8's maximum, then the largest value
|
|
|
|
will be chosen.
|
|
|
|
|
|
|
|
### `--zero-fill-buffers`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v6.0.0
|
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-16 23:59:39 +02:00
|
|
|
Automatically zero-fills all newly allocated [`Buffer`][] and [`SlowBuffer`][]
|
2018-04-08 08:33:19 +02:00
|
|
|
instances.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `-c`, `--check`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added:
|
|
|
|
- v5.0.0
|
|
|
|
- v4.2.0
|
|
|
|
changes:
|
2018-03-02 18:53:46 +01:00
|
|
|
- version: v10.0.0
|
2018-04-08 08:33:19 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/19600
|
|
|
|
description: The `--require` option is now supported when checking a file.
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Syntax check the script without executing.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `-e`, `--eval "script"`
|
2016-10-18 07:35:22 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.5.2
|
|
|
|
changes:
|
|
|
|
- version: v5.11.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/5348
|
|
|
|
description: Built-in libraries are now available as predefined variables.
|
2016-10-18 07:35:22 +02:00
|
|
|
-->
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Evaluate the following argument as JavaScript. The modules which are
|
|
|
|
predefined in the REPL can also be used in `script`.
|
2016-10-18 07:35:22 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
On Windows, using `cmd.exe` a single quote will not work correctly because it
|
|
|
|
only recognizes double `"` for quoting. In Powershell or Git bash, both `'`
|
|
|
|
and `"` are usable.
|
|
|
|
|
|
|
|
### `-h`, `--help`
|
2016-12-21 11:16:39 +01:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.1.3
|
2016-12-21 11:16:39 +01:00
|
|
|
-->
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Print node command line options.
|
|
|
|
The output of this option is less detailed than this document.
|
2016-12-21 11:16:39 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `-i`, `--interactive`
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2016-12-21 11:16:39 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Opens the REPL even if stdin does not appear to be a terminal.
|
2016-10-18 07:35:22 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `-p`, `--print "script"`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.6.4
|
|
|
|
changes:
|
|
|
|
- version: v5.11.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/5348
|
|
|
|
description: Built-in libraries are now available as predefined variables.
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Identical to `-e` but prints the result.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `-r`, `--require module`
|
2017-05-13 09:58:18 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v1.6.0
|
2017-05-13 09:58:18 +02:00
|
|
|
-->
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Preload the specified module at startup.
|
|
|
|
|
|
|
|
Follows `require()`'s module resolution
|
|
|
|
rules. `module` may be either a path to a file, or a node module name.
|
2017-05-13 09:58:18 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `-v`, `--version`
|
2016-12-30 06:28:38 +01:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.1.3
|
2016-12-30 06:28:38 +01:00
|
|
|
-->
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Print node's version.
|
2016-12-30 06:28:38 +01:00
|
|
|
|
2016-03-18 18:26:41 +01:00
|
|
|
## Environment Variables
|
|
|
|
|
|
|
|
### `NODE_DEBUG=module[,…]`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.32
|
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
|
|
|
`','`-separated list of core modules that should print debug information.
|
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `NODE_DISABLE_COLORS=1`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v0.3.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
When set to `1` colors will not be used in the REPL.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `NODE_EXTRA_CA_CERTS=file`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v7.3.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
When set, the well known "root" CAs (like VeriSign) will be extended with the
|
|
|
|
extra certificates in `file`. The file should consist of one or more trusted
|
|
|
|
certificates in PEM format. A message will be emitted (once) with
|
|
|
|
[`process.emitWarning()`][emit_warning] if the file is missing or
|
|
|
|
malformed, but any errors are otherwise ignored.
|
|
|
|
|
|
|
|
Note that neither the well known nor extra certificates are used when the `ca`
|
|
|
|
options property is explicitly specified for a TLS or HTTPS client or server.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
|
|
|
### `NODE_ICU_DATA=file`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.15
|
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-29 19:46:41 +02:00
|
|
|
Data path for ICU (`Intl` object) data. Will extend linked-in data when compiled
|
2016-03-18 18:26:41 +01:00
|
|
|
with small-icu support.
|
|
|
|
|
2017-01-16 22:57:36 +01:00
|
|
|
### `NODE_NO_WARNINGS=1`
|
|
|
|
<!-- YAML
|
2017-05-16 20:05:47 +02:00
|
|
|
added: v6.11.0
|
2017-01-16 22:57:36 +01:00
|
|
|
-->
|
|
|
|
|
|
|
|
When set to `1`, process warnings are silenced.
|
|
|
|
|
2017-02-20 15:18:43 +01:00
|
|
|
### `NODE_OPTIONS=options...`
|
|
|
|
<!-- YAML
|
2017-03-16 04:26:14 +01:00
|
|
|
added: v8.0.0
|
2017-02-20 15:18:43 +01:00
|
|
|
-->
|
|
|
|
|
2017-08-09 08:58:00 +02:00
|
|
|
A space-separated list of command line options. `options...` are interpreted as
|
|
|
|
if they had been specified on the command line before the actual command line
|
2018-03-04 14:46:49 +01:00
|
|
|
(so they can be overridden). Node.js will exit with an error if an option
|
|
|
|
that is not allowed in the environment is used, such as `-p` or a script file.
|
2017-02-20 15:18:43 +01:00
|
|
|
|
|
|
|
Node options that are allowed are:
|
|
|
|
- `--enable-fips`
|
2018-06-22 18:23:36 +02:00
|
|
|
- `--experimental-modules`
|
|
|
|
- `--experimental-repl-await`
|
|
|
|
- `--experimental-vm-modules`
|
|
|
|
- `--experimental-worker`
|
2017-02-20 15:18:43 +01:00
|
|
|
- `--force-fips`
|
|
|
|
- `--icu-data-dir`
|
2018-06-09 11:50:31 +02:00
|
|
|
- `--inspect`
|
2017-05-12 21:39:11 +02:00
|
|
|
- `--inspect-brk`
|
|
|
|
- `--inspect-port`
|
2018-06-22 18:23:36 +02:00
|
|
|
- `--loader`
|
|
|
|
- `--napi-modules`
|
2017-02-20 15:18:43 +01:00
|
|
|
- `--no-deprecation`
|
2018-06-22 18:23:36 +02:00
|
|
|
- `--no-force-async-hooks-checks`
|
2017-02-20 15:18:43 +01:00
|
|
|
- `--no-warnings`
|
|
|
|
- `--openssl-config`
|
2018-06-22 18:23:36 +02:00
|
|
|
- `--pending-deprecation`
|
2017-02-20 15:18:43 +01:00
|
|
|
- `--redirect-warnings`
|
|
|
|
- `--require`, `-r`
|
|
|
|
- `--throw-deprecation`
|
2018-06-23 01:16:03 +02:00
|
|
|
- `--title`
|
2017-05-23 18:02:07 +02:00
|
|
|
- `--tls-cipher-list`
|
2017-02-20 15:18:43 +01:00
|
|
|
- `--trace-deprecation`
|
2018-06-09 11:50:31 +02:00
|
|
|
- `--trace-event-categories`
|
2018-01-31 17:12:09 +01:00
|
|
|
- `--trace-event-file-pattern`
|
2018-06-09 11:50:31 +02:00
|
|
|
- `--trace-events-enabled`
|
2017-02-20 15:18:43 +01:00
|
|
|
- `--trace-sync-io`
|
|
|
|
- `--trace-warnings`
|
|
|
|
- `--track-heap-objects`
|
|
|
|
- `--use-bundled-ca`
|
|
|
|
- `--use-openssl-ca`
|
|
|
|
- `--v8-pool-size`
|
|
|
|
- `--zero-fill-buffers`
|
|
|
|
|
|
|
|
V8 options that are allowed are:
|
2017-06-26 20:24:33 +02:00
|
|
|
- `--abort-on-uncaught-exception`
|
2017-07-05 23:25:55 +02:00
|
|
|
- `--max-old-space-size`
|
2017-12-11 05:05:54 +01:00
|
|
|
- `--perf-basic-prof`
|
|
|
|
- `--perf-prof`
|
2017-10-25 19:51:58 +02:00
|
|
|
- `--stack-trace-limit`
|
2017-02-20 15:18:43 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `NODE_PATH=path[:…]`
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.32
|
|
|
|
-->
|
|
|
|
|
|
|
|
`':'`-separated list of directories prefixed to the module search path.
|
|
|
|
|
|
|
|
On Windows, this is a `';'`-separated list instead.
|
|
|
|
|
2017-03-11 21:18:53 +01:00
|
|
|
### `NODE_PENDING_DEPRECATION=1`
|
|
|
|
<!-- YAML
|
2017-03-16 04:26:14 +01:00
|
|
|
added: v8.0.0
|
2017-03-11 21:18:53 +01:00
|
|
|
-->
|
|
|
|
|
|
|
|
When set to `1`, emit pending deprecation warnings.
|
|
|
|
|
2018-02-06 06:55:16 +01:00
|
|
|
Pending deprecations are generally identical to a runtime deprecation with the
|
|
|
|
notable exception that they are turned *off* by default and will not be emitted
|
|
|
|
unless either the `--pending-deprecation` command line flag, or the
|
2017-03-11 21:18:53 +01:00
|
|
|
`NODE_PENDING_DEPRECATION=1` environment variable, is set. Pending deprecations
|
|
|
|
are used to provide a kind of selective "early warning" mechanism that
|
|
|
|
developers may leverage to detect deprecated API usage.
|
|
|
|
|
2016-09-21 00:21:44 +02:00
|
|
|
### `NODE_PRESERVE_SYMLINKS=1`
|
|
|
|
<!-- YAML
|
2016-11-03 12:00:09 +01:00
|
|
|
added: v7.1.0
|
2016-09-21 00:21:44 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
When set to `1`, instructs the module loader to preserve symbolic links when
|
|
|
|
resolving and caching modules.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `NODE_REDIRECT_WARNINGS=file`
|
2016-05-25 02:04:39 +02:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v8.0.0
|
2016-05-25 02:04:39 +02:00
|
|
|
-->
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
When set, process warnings will be emitted to the given file instead of
|
|
|
|
printing to stderr. The file will be created if it does not exist, and will be
|
|
|
|
appended to if it does. If an error occurs while attempting to write the
|
|
|
|
warning to the file, the warning will be written to stderr instead. This is
|
|
|
|
equivalent to using the `--redirect-warnings=file` command-line flag.
|
2016-03-18 18:26:41 +01:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
### `NODE_REPL_HISTORY=file`
|
2017-01-13 02:43:58 +01:00
|
|
|
<!-- YAML
|
2018-04-08 08:33:19 +02:00
|
|
|
added: v3.0.0
|
2017-01-13 02:43:58 +01:00
|
|
|
-->
|
2016-07-14 12:24:10 +02:00
|
|
|
|
2018-04-08 08:33:19 +02:00
|
|
|
Path to the file used to store the persistent REPL history. The default path is
|
|
|
|
`~/.node_repl_history`, which is overridden by this variable. Setting the value
|
|
|
|
to an empty string (`''` or `' '`) disables persistent REPL history.
|
2016-10-17 20:56:58 +02:00
|
|
|
|
2017-01-25 23:13:34 +01:00
|
|
|
### `OPENSSL_CONF=file`
|
|
|
|
<!-- YAML
|
2017-05-16 20:05:47 +02:00
|
|
|
added: v6.11.0
|
2017-01-25 23:13:34 +01:00
|
|
|
-->
|
|
|
|
|
|
|
|
Load an OpenSSL configuration file on startup. Among other uses, this can be
|
|
|
|
used to enable FIPS-compliant crypto if Node.js is built with `./configure
|
2017-06-20 03:23:09 +02:00
|
|
|
--openssl-fips`.
|
2017-01-25 23:13:34 +01:00
|
|
|
|
|
|
|
If the [`--openssl-config`][] command line option is used, the environment
|
|
|
|
variable is ignored.
|
|
|
|
|
2016-12-21 11:16:39 +01:00
|
|
|
### `SSL_CERT_DIR=dir`
|
2017-01-25 23:20:24 +01:00
|
|
|
<!-- YAML
|
2017-02-28 04:49:09 +01:00
|
|
|
added: v7.7.0
|
2017-01-25 23:20:24 +01:00
|
|
|
-->
|
2016-12-21 11:16:39 +01:00
|
|
|
|
|
|
|
If `--use-openssl-ca` is enabled, this overrides and sets OpenSSL's directory
|
|
|
|
containing trusted certificates.
|
|
|
|
|
2018-02-06 06:55:16 +01:00
|
|
|
Be aware that unless the child environment is explicitly set, this environment
|
|
|
|
variable will be inherited by any child processes, and if they use OpenSSL, it
|
|
|
|
may cause them to trust the same CAs as node.
|
2016-12-21 11:16:39 +01:00
|
|
|
|
|
|
|
### `SSL_CERT_FILE=file`
|
2017-01-25 23:20:24 +01:00
|
|
|
<!-- YAML
|
2017-02-28 04:49:09 +01:00
|
|
|
added: v7.7.0
|
2017-01-25 23:20:24 +01:00
|
|
|
-->
|
2016-12-21 11:16:39 +01:00
|
|
|
|
|
|
|
If `--use-openssl-ca` is enabled, this overrides and sets OpenSSL's file
|
|
|
|
containing trusted certificates.
|
|
|
|
|
2018-02-06 06:55:16 +01:00
|
|
|
Be aware that unless the child environment is explicitly set, this environment
|
|
|
|
variable will be inherited by any child processes, and if they use OpenSSL, it
|
|
|
|
may cause them to trust the same CAs as node.
|
2016-12-21 11:16:39 +01:00
|
|
|
|
2017-08-23 23:59:06 +02:00
|
|
|
### `UV_THREADPOOL_SIZE=size`
|
|
|
|
|
|
|
|
Set the number of threads used in libuv's threadpool to `size` threads.
|
|
|
|
|
|
|
|
Asynchronous system APIs are used by Node.js whenever possible, but where they
|
|
|
|
do not exist, libuv's threadpool is used to create asynchronous node APIs based
|
|
|
|
on synchronous system APIs. Node.js APIs that use the threadpool are:
|
|
|
|
|
|
|
|
- all `fs` APIs, other than the file watcher APIs and those that are explicitly
|
|
|
|
synchronous
|
|
|
|
- `crypto.pbkdf2()`
|
|
|
|
- `crypto.randomBytes()`, unless it is used without a callback
|
|
|
|
- `crypto.randomFill()`
|
|
|
|
- `dns.lookup()`
|
|
|
|
- all `zlib` APIs, other than those that are explicitly synchronous
|
|
|
|
|
|
|
|
Because libuv's threadpool has a fixed size, it means that if for whatever
|
|
|
|
reason any of these APIs takes a long time, other (seemingly unrelated) APIs
|
|
|
|
that run in libuv's threadpool will experience degraded performance. In order to
|
|
|
|
mitigate this issue, one potential solution is to increase the size of libuv's
|
|
|
|
threadpool by setting the `'UV_THREADPOOL_SIZE'` environment variable to a value
|
2018-04-02 07:38:48 +02:00
|
|
|
greater than `4` (its current default value). For more information, see the
|
2017-08-23 23:59:06 +02:00
|
|
|
[libuv threadpool documentation][].
|
|
|
|
|
2017-05-08 18:30:13 +02:00
|
|
|
[`--openssl-config`]: #cli_openssl_config_file
|
2018-04-16 23:59:39 +02:00
|
|
|
[`Buffer`]: buffer.html#buffer_class_buffer
|
|
|
|
[`SlowBuffer`]: buffer.html#buffer_class_slowbuffer
|
|
|
|
[`process.setUncaughtExceptionCaptureCallback()`]: process.html#process_process_setuncaughtexceptioncapturecallback_fn
|
2018-04-17 19:04:03 +02:00
|
|
|
[Chrome DevTools Protocol]: https://chromedevtools.github.io/devtools-protocol/
|
2016-03-18 18:26:41 +01:00
|
|
|
[REPL]: repl.html
|
2017-05-08 18:30:13 +02:00
|
|
|
[debugger]: debugger.html
|
2017-06-20 08:04:24 +02:00
|
|
|
[emit_warning]: process.html#process_process_emitwarning_warning_type_code_ctor
|
2017-08-23 23:59:06 +02:00
|
|
|
[libuv threadpool documentation]: http://docs.libuv.org/en/latest/threadpool.html
|