doc: add missing environment variables to manpage · nodejs/node@9d02960

@@ -693,12 +693,22 @@ disabled.

693693

.It Ev NO_COLOR

694694

Alias for NODE_DISABLE_COLORS

695695

.

696+

.It Ev NODE_COMPILE_CACHE Ar dir

697+

Enable the

698+

.Sy module compile cache

699+

for the Node.js instance.

700+

.

696701

.It Ev NODE_DEBUG Ar modules...

697702

Comma-separated list of core modules that should print debug information.

698703

.

699704

.It Ev NODE_DEBUG_NATIVE Ar modules...

700705

Comma-separated list of C++ core modules that should print debug information.

701706

.

707+

.It Ev NODE_DISABLE_COMPILE_CACHE

708+

Disable the

709+

.Sy module compile cache

710+

for the Node.js instance.

711+

.

702712

.It Ev NODE_DISABLE_COLORS

703713

When set to

704714

.Ar 1 ,

@@ -754,6 +764,9 @@ When set to

754764

.Ar 1 ,

755765

emit pending deprecation warnings.

756766

.

767+

.It Ev NODE_PENDING_PIPE_INSTANCES

768+

Set the number of pending pipe instance handles when the pipe server is waiting for connections. This setting applies to Windows only.

769+

.

757770

.It Ev NODE_PRESERVE_SYMLINKS

758771

When set to

759772

.Ar 1 ,

@@ -787,11 +800,30 @@ the check for a supported platform is skipped during Node.js startup.

787800

Node.js might not execute correctly.

788801

Any issues encountered on unsupported platforms will not be fixed.

789802

.

803+

.It Ev NODE_TEST_CONTEXT

804+

When set to

805+

.Ar 'child'

806+

, test reporter options will be overridden and test output will be sent to stdout in the TAP format.

807+

If any other value is provided, Node.js makes no guarantees about the reporter format used or its stability.

808+

.

790809

.It Ev NODE_TLS_REJECT_UNAUTHORIZED

791810

When set to

792811

.Ar 0 ,

793812

TLS certificate validation is disabled.

794813

.

814+

.It Ev NODE_USE_ENV_PROXY

815+

When enabled, Node.js parses the

816+

.Ar HTTP_PROXY

817+

,

818+

.Ar HTTPS_PROXY

819+

and

820+

.Ar NO_PROXY

821+

environment variables during startup, and tunnels requests over the specified proxy.

822+

.Pp

823+

This currently only affects requests sent over

824+

.Ar fetch() .

825+

Support for other built-in http and https methods is under way.

826+

.

795827

.It Ev NODE_V8_COVERAGE Ar dir

796828

When set, Node.js writes JavaScript code coverage information to

797829

.Ar dir .