Skip to content

Commit 6e4a120

Browse files
cjihrigrvagg
authored andcommitted
doc: add missing env variables to man page
This commit adds the missing environment variables NODE_DEBUG_NATIVE, NODE_PRESERVE_SYMLINKS, NODE_TLS_REJECT_UNAUTHORIZED, NODE_V8_COVERAGE, and UV_THREADPOOL_SIZE to the man page. PR-URL: #24383 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ouyang Yadong <oyydoibh@gmail.com> Reviewed-By: Weijia Wang <starkwang@126.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent b214ae4 commit 6e4a120

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

doc/node.1

+22-1
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,9 @@ Print node's version.
275275
.It Ev NODE_DEBUG Ar modules...
276276
Comma-separated list of core modules that should print debug information.
277277
.
278+
.It Ev NODE_DEBUG_NATIVE Ar modules...
279+
Comma-separated list of C++ core modules that should print debug information.
280+
.
278281
.It Ev NODE_DISABLE_COLORS
279282
When set to
280283
.Ar 1 ,
@@ -323,6 +326,11 @@ When set to
323326
.Ar 1 ,
324327
emit pending deprecation warnings.
325328
.
329+
.It Ev NODE_PRESERVE_SYMLINKS
330+
When set to
331+
.Ar 1 ,
332+
the module loader preserves symbolic links when resolving and caching modules.
333+
.
326334
.It Ev NODE_REDIRECT_WARNINGS Ar file
327335
Write process warnings to the given
328336
.Ar file
@@ -339,6 +347,15 @@ The default path is
339347
which is overridden by this variable.
340348
Setting the value to an empty string ("" or " ") will disable persistent REPL history.
341349
.
350+
.It Ev NODE_TLS_REJECT_UNAUTHORIZED
351+
When set to
352+
.Ar 0 ,
353+
TLS certificate validation is disabled.
354+
.
355+
.It Ev NODE_V8_COVERAGE Ar dir
356+
When set, Node.js writes JavaScript code coverage information to
357+
.Ar dir .
358+
.
342359
.It Ev OPENSSL_CONF Ar file
343360
Load an OpenSSL configuration file on startup.
344361
Among other uses, this can be used to enable FIPS-compliant crypto if Node.js is built with
@@ -357,8 +374,12 @@ is enabled, this overrides and sets OpenSSL's directory containing trusted certi
357374
If
358375
.Fl -use-openssl-ca
359376
is enabled, this overrides and sets OpenSSL's file containing trusted certificates.
360-
.El
361377
.
378+
.It Ev UV_THREADPOOL_SIZE Ar size
379+
Sets the number of threads used in libuv's threadpool to
380+
.Ar size .
381+
.
382+
.El
362383
.\"=====================================================================
363384
.Sh BUGS
364385
Bugs are tracked in GitHub Issues:

0 commit comments

Comments
 (0)