Skip to content

Commit ef1056f

Browse files
cjihrigcodebytere
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 <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Ouyang Yadong <[email protected]> Reviewed-By: Weijia Wang <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 3ef68d8 commit ef1056f

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
@@ -278,6 +278,9 @@ Print node's version.
278278
.It Ev NODE_DEBUG Ar modules...
279279
Comma-separated list of core modules that should print debug information.
280280
.
281+
.It Ev NODE_DEBUG_NATIVE Ar modules...
282+
Comma-separated list of C++ core modules that should print debug information.
283+
.
281284
.It Ev NODE_DISABLE_COLORS
282285
When set to
283286
.Ar 1 ,
@@ -326,6 +329,11 @@ When set to
326329
.Ar 1 ,
327330
emit pending deprecation warnings.
328331
.
332+
.It Ev NODE_PRESERVE_SYMLINKS
333+
When set to
334+
.Ar 1 ,
335+
the module loader preserves symbolic links when resolving and caching modules.
336+
.
329337
.It Ev NODE_REDIRECT_WARNINGS Ar file
330338
Write process warnings to the given
331339
.Ar file
@@ -342,6 +350,15 @@ The default path is
342350
which is overridden by this variable.
343351
Setting the value to an empty string ("" or " ") will disable persistent REPL history.
344352
.
353+
.It Ev NODE_TLS_REJECT_UNAUTHORIZED
354+
When set to
355+
.Ar 0 ,
356+
TLS certificate validation is disabled.
357+
.
358+
.It Ev NODE_V8_COVERAGE Ar dir
359+
When set, Node.js writes JavaScript code coverage information to
360+
.Ar dir .
361+
.
345362
.It Ev OPENSSL_CONF Ar file
346363
Load an OpenSSL configuration file on startup.
347364
Among other uses, this can be used to enable FIPS-compliant crypto if Node.js is built with
@@ -360,8 +377,12 @@ is enabled, this overrides and sets OpenSSL's directory containing trusted certi
360377
If
361378
.Fl -use-openssl-ca
362379
is enabled, this overrides and sets OpenSSL's file containing trusted certificates.
363-
.El
364380
.
381+
.It Ev UV_THREADPOOL_SIZE Ar size
382+
Sets the number of threads used in libuv's threadpool to
383+
.Ar size .
384+
.
385+
.El
365386
.\"=====================================================================
366387
.Sh BUGS
367388
Bugs are tracked in GitHub Issues:

0 commit comments

Comments
 (0)