| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -707,12 +707,22 @@ disabled. | |||
| 707 | 707 | .It Ev NO_COLOR | |
| 708 | 708 | Alias for NODE_DISABLE_COLORS | |
| 709 | 709 | . | |
| 710 | + .It Ev NODE_COMPILE_CACHE Ar dir | ||
| 711 | + Enable the | ||
| 712 | + .Sy module compile cache | ||
| 713 | + for the Node.js instance. | ||
| 714 | + . | ||
| 710 | 715 | .It Ev NODE_DEBUG Ar modules... | |
| 711 | 716 | Comma-separated list of core modules that should print debug information. | |
| 712 | 717 | . | |
| 713 | 718 | .It Ev NODE_DEBUG_NATIVE Ar modules... | |
| 714 | 719 | Comma-separated list of C++ core modules that should print debug information. | |
| 715 | 720 | . | |
| 721 | + .It Ev NODE_DISABLE_COMPILE_CACHE | ||
| 722 | + Disable the | ||
| 723 | + .Sy module compile cache | ||
| 724 | + for the Node.js instance. | ||
| 725 | + . | ||
| 716 | 726 | .It Ev NODE_DISABLE_COLORS | |
| 717 | 727 | When set to | |
| 718 | 728 | .Ar 1 , | |
@@ -768,6 +778,9 @@ When set to | |||
| 768 | 778 | .Ar 1 , | |
| 769 | 779 | emit pending deprecation warnings. | |
| 770 | 780 | . | |
| 781 | + .It Ev NODE_PENDING_PIPE_INSTANCES | ||
| 782 | + Set the number of pending pipe instance handles when the pipe server is waiting for connections. This setting applies to Windows only. | ||
| 783 | + . | ||
| 771 | 784 | .It Ev NODE_PRESERVE_SYMLINKS | |
| 772 | 785 | When set to | |
| 773 | 786 | .Ar 1 , | |
@@ -801,6 +814,12 @@ the check for a supported platform is skipped during Node.js startup. | |||
| 801 | 814 | Node.js might not execute correctly. | |
| 802 | 815 | Any issues encountered on unsupported platforms will not be fixed. | |
| 803 | 816 | . | |
| 817 | + .It Ev NODE_TEST_CONTEXT | ||
| 818 | + When set to | ||
| 819 | + .Ar 'child' | ||
| 820 | + , test reporter options will be overridden and test output will be sent to stdout in the TAP format. | ||
| 821 | + If any other value is provided, Node.js makes no guarantees about the reporter format used or its stability. | ||
| 822 | + . | ||
| 804 | 823 | .It Ev NODE_TLS_REJECT_UNAUTHORIZED | |
| 805 | 824 | When set to | |
| 806 | 825 | .Ar 0 , | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -21,18 +21,8 @@ assert(manpageEnvVarNames.size > 0, | |||
| 21 | 21 | 'Unexpectedly not even a single env variable was detected when scanning the `doc/node.1` file' | |
| 22 | 22 | ); | |
| 23 | 23 | ||
| 24 | - // TODO(dario-piotrowicz): add the missing env variables to the manpage and remove this set | ||
| 25 | - // (refs: https://github.com/nodejs/node/issues/58894) | ||
| 26 | - const knownEnvVariablesMissingFromManPage = new Set([ | ||
| 27 | - 'NODE_COMPILE_CACHE', | ||
| 28 | - 'NODE_DISABLE_COMPILE_CACHE', | ||
| 29 | - 'NODE_PENDING_PIPE_INSTANCES', | ||
| 30 | - 'NODE_TEST_CONTEXT', | ||
| 31 | - 'NODE_USE_ENV_PROXY', | ||
| 32 | - ]); | ||
| 33 | - | ||
| 34 | 24 | for (const envVarName of cliMdEnvVarNames) { | |
| 35 | - if (!manpageEnvVarNames.has(envVarName) && !knownEnvVariablesMissingFromManPage.has(envVarName)) { | ||
| 25 | + if (!manpageEnvVarNames.has(envVarName)) { | ||
| 36 | 26 | assert.fail(`The "${envVarName}" environment variable (present in \`doc/api/cli.md\`) is missing from the \`doc/node.1\` file`); | |
| 37 | 27 | } | |
| 38 | 28 | manpageEnvVarNames.delete(envVarName); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments