@@ -696,12 +696,22 @@ disabled.
696696.It Ev NO_COLOR
697697Alias for NODE_DISABLE_COLORS
698698.
699+ .It Ev NODE_COMPILE_CACHE Ar dir
700+ Enable the
701+ .Sy module compile cache
702+ for the Node.js instance.
703+ .
699704.It Ev NODE_DEBUG Ar modules...
700705Comma-separated list of core modules that should print debug information.
701706.
702707.It Ev NODE_DEBUG_NATIVE Ar modules...
703708Comma-separated list of C++ core modules that should print debug information.
704709.
710+ .It Ev NODE_DISABLE_COMPILE_CACHE
711+ Disable the
712+ .Sy module compile cache
713+ for the Node.js instance.
714+ .
705715.It Ev NODE_DISABLE_COLORS
706716When set to
707717.Ar 1 ,
@@ -757,6 +767,9 @@ When set to
757767.Ar 1 ,
758768emit pending deprecation warnings.
759769.
770+ .It Ev NODE_PENDING_PIPE_INSTANCES
771+ Set the number of pending pipe instance handles when the pipe server is waiting for connections. This setting applies to Windows only.
772+ .
760773.It Ev NODE_PRESERVE_SYMLINKS
761774When set to
762775.Ar 1 ,
@@ -790,11 +803,30 @@ the check for a supported platform is skipped during Node.js startup.
790803Node.js might not execute correctly.
791804Any issues encountered on unsupported platforms will not be fixed.
792805.
806+ .It Ev NODE_TEST_CONTEXT
807+ When set to
808+ .Ar 'child'
809+ , test reporter options will be overridden and test output will be sent to stdout in the TAP format.
810+ If any other value is provided, Node.js makes no guarantees about the reporter format used or its stability.
811+ .
793812.It Ev NODE_TLS_REJECT_UNAUTHORIZED
794813When set to
795814.Ar 0 ,
796815TLS certificate validation is disabled.
797816.
817+ .It Ev NODE_USE_ENV_PROXY
818+ When enabled, Node.js parses the
819+ .Ar HTTP_PROXY
820+ ,
821+ .Ar HTTPS_PROXY
822+ and
823+ .Ar NO_PROXY
824+ environment variables during startup, and tunnels requests over the specified proxy.
825+ .Pp
826+ This currently only affects requests sent over
827+ .Ar fetch() .
828+ Support for other built-in http and https methods is under way.
829+ .
798830.It Ev NODE_V8_COVERAGE Ar dir
799831When set, Node.js writes JavaScript code coverage information to
800832.Ar dir .
0 commit comments