@@ -696,12 +696,22 @@ disabled.
696
696
.It Ev NO_COLOR
697
697
Alias for NODE_DISABLE_COLORS
698
698
.
699
+ .It Ev NODE_COMPILE_CACHE Ar dir
700
+ Enable the
701
+ .Sy module compile cache
702
+ for the Node.js instance.
703
+ .
699
704
.It Ev NODE_DEBUG Ar modules...
700
705
Comma-separated list of core modules that should print debug information.
701
706
.
702
707
.It Ev NODE_DEBUG_NATIVE Ar modules...
703
708
Comma-separated list of C++ core modules that should print debug information.
704
709
.
710
+ .It Ev NODE_DISABLE_COMPILE_CACHE
711
+ Disable the
712
+ .Sy module compile cache
713
+ for the Node.js instance.
714
+ .
705
715
.It Ev NODE_DISABLE_COLORS
706
716
When set to
707
717
.Ar 1 ,
@@ -757,6 +767,9 @@ When set to
757
767
.Ar 1 ,
758
768
emit pending deprecation warnings.
759
769
.
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
+ .
760
773
.It Ev NODE_PRESERVE_SYMLINKS
761
774
When set to
762
775
.Ar 1 ,
@@ -790,11 +803,30 @@ the check for a supported platform is skipped during Node.js startup.
790
803
Node.js might not execute correctly.
791
804
Any issues encountered on unsupported platforms will not be fixed.
792
805
.
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
+ .
793
812
.It Ev NODE_TLS_REJECT_UNAUTHORIZED
794
813
When set to
795
814
.Ar 0 ,
796
815
TLS certificate validation is disabled.
797
816
.
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
+ .
798
830
.It Ev NODE_V8_COVERAGE Ar dir
799
831
When set, Node.js writes JavaScript code coverage information to
800
832
.Ar dir .
0 commit comments