mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
doc: document the NO_COLOR and FORCE_COLOR env vars
Signed-off-by: James M Snell <jasnell@gmail.com> Fixes: https://github.com/nodejs/node/issues/37404 PR-URL: https://github.com/nodejs/node/pull/37477 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
@@ -1264,6 +1264,19 @@ Print node's version.
|
||||
|
||||
## Environment variables
|
||||
|
||||
### `FORCE_COLOR=[1, 2, 3]`
|
||||
|
||||
The `FORCE_COLOR` environment variable is used to
|
||||
enable ANSI colorized output. The value may be:
|
||||
|
||||
* `1`, `true`, or the empty string `''` indicate 16-color support,
|
||||
* `2` to indicate 256-color support, or
|
||||
* `3` to indicate 16 million-color support.
|
||||
|
||||
When `FORCE_COLOR` is used and set to a supported value, both the `NO_COLOR`,
|
||||
and `NODE_DISABLE_COLORS` environment variables are ignored.
|
||||
|
||||
Any other value will result in colorized output being disabled.
|
||||
### `NODE_DEBUG=module[,…]`
|
||||
<!-- YAML
|
||||
added: v0.1.32
|
||||
@@ -1609,6 +1622,11 @@ and the line lengths of the source file (in the key `lineLengths`).
|
||||
}
|
||||
```
|
||||
|
||||
### `NO_COLOR=<any>`
|
||||
|
||||
[`NO_COLOR`][] is an alias for `NODE_DISABLE_COLORS`. The value of the
|
||||
environment variable is arbitrary.
|
||||
|
||||
### `OPENSSL_CONF=file`
|
||||
<!-- YAML
|
||||
added: v6.11.0
|
||||
@@ -1704,6 +1722,7 @@ $ node --max-old-space-size=1536 index.js
|
||||
[`Buffer`]: buffer.md#buffer_class_buffer
|
||||
[`CRYPTO_secure_malloc_init`]: https://www.openssl.org/docs/man1.1.0/man3/CRYPTO_secure_malloc_init.html
|
||||
[`NODE_OPTIONS`]: #cli_node_options_options
|
||||
[`NO_COLOR`]: https://no-color.org
|
||||
[`SlowBuffer`]: buffer.md#buffer_class_slowbuffer
|
||||
[`process.setUncaughtExceptionCaptureCallback()`]: process.md#process_process_setuncaughtexceptioncapturecallback_fn
|
||||
[`tls.DEFAULT_MAX_VERSION`]: tls.md#tls_tls_default_max_version
|
||||
|
||||
20
doc/node.1
20
doc/node.1
@@ -530,6 +530,26 @@ Print node's version.
|
||||
.\" =====================================================================
|
||||
.Sh ENVIRONMENT
|
||||
.Bl -tag -width 6n
|
||||
.It Ev FORCE_COLOR
|
||||
Used to enable ANSI colorized output. The value may be one of:
|
||||
.Ar 1
|
||||
,
|
||||
.Ar true
|
||||
, or
|
||||
.Ar an empty string
|
||||
to
|
||||
indicate 16-color support,
|
||||
.Ar 2
|
||||
to indicate 256-color support, or
|
||||
.Ar 3
|
||||
to indicate 16 million-color support. When used and set to a supported
|
||||
value, both the NO_COLOR and NODE_DISABLE_COLORS environment variables
|
||||
are ignored. Any other value will result in colorized output being
|
||||
disabled.
|
||||
.
|
||||
.It Ev NO_COLOR
|
||||
Alias for NODE_DISABLE_COLORS
|
||||
.
|
||||
.It Ev NODE_DEBUG Ar modules...
|
||||
Comma-separated list of core modules that should print debug information.
|
||||
.
|
||||
|
||||
@@ -29,6 +29,9 @@ for (const key of ObjectKeys(types))
|
||||
// so we gather the documentation here.
|
||||
const { hasIntl, hasSmallICU, hasNodeOptions } = internalBinding('config');
|
||||
const envVars = new SafeMap(ArrayPrototypeConcat([
|
||||
['FORCE_COLOR', { helpText: "when set to 'true', 1, 2, 3, or an empty " +
|
||||
'string causes NO_COLOR and NODE_DISABLE_COLORS to be ignored.' }],
|
||||
['NO_COLOR', { helpText: 'Alias for NODE_DISABLE_COLORS' }],
|
||||
['NODE_DEBUG', { helpText: "','-separated list of core modules that " +
|
||||
'should print debug information' }],
|
||||
['NODE_DEBUG_NATIVE', { helpText: "','-separated list of C++ core debug " +
|
||||
|
||||
Reference in New Issue
Block a user