Skip to content

Commit 79a49f1

Browse files
committed
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 aa089bf commit 79a49f1

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

doc/node.1

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,9 @@ Print node's version.
283283
.It Ev NODE_DEBUG Ar modules...
284284
Comma-separated list of core modules that should print debug information.
285285
.
286+
.It Ev NODE_DEBUG_NATIVE Ar modules...
287+
Comma-separated list of C++ core modules that should print debug information.
288+
.
286289
.It Ev NODE_DISABLE_COLORS
287290
When set to
288291
.Ar 1 ,
@@ -331,6 +334,11 @@ When set to
331334
.Ar 1 ,
332335
emit pending deprecation warnings.
333336
.
337+
.It Ev NODE_PRESERVE_SYMLINKS
338+
When set to
339+
.Ar 1 ,
340+
the module loader preserves symbolic links when resolving and caching modules.
341+
.
334342
.It Ev NODE_REDIRECT_WARNINGS Ar file
335343
Write process warnings to the given
336344
.Ar file
@@ -347,6 +355,15 @@ The default path is
347355
which is overridden by this variable.
348356
Setting the value to an empty string ("" or " ") will disable persistent REPL history.
349357
.
358+
.It Ev NODE_TLS_REJECT_UNAUTHORIZED
359+
When set to
360+
.Ar 0 ,
361+
TLS certificate validation is disabled.
362+
.
363+
.It Ev NODE_V8_COVERAGE Ar dir
364+
When set, Node.js writes JavaScript code coverage information to
365+
.Ar dir .
366+
.
350367
.It Ev OPENSSL_CONF Ar file
351368
Load an OpenSSL configuration file on startup.
352369
Among other uses, this can be used to enable FIPS-compliant crypto if Node.js is built with
@@ -365,8 +382,12 @@ is enabled, this overrides and sets OpenSSL's directory containing trusted certi
365382
If
366383
.Fl -use-openssl-ca
367384
is enabled, this overrides and sets OpenSSL's file containing trusted certificates.
368-
.El
369385
.
386+
.It Ev UV_THREADPOOL_SIZE Ar size
387+
Sets the number of threads used in libuv's threadpool to
388+
.Ar size .
389+
.
390+
.El
370391
.\"=====================================================================
371392
.Sh BUGS
372393
Bugs are tracked in GitHub Issues:

0 commit comments

Comments
 (0)