1- # Command line options
1+ # Command- line options
22
33<!-- introduced_in=v5.9.1-->
44<!-- type=misc-->
@@ -43,7 +43,7 @@ environment variable.
4343added: v8.0.0
4444-->
4545
46- Alias for stdin. Analogous to the use of ` - ` in other command line utilities,
46+ Alias for stdin. Analogous to the use of ` - ` in other command- line utilities,
4747meaning that the script is read from stdin, and the rest of the options
4848are passed to that script.
4949
@@ -128,7 +128,7 @@ Specify the directory where the CPU profiles generated by `--cpu-prof` will
128128be placed.
129129
130130The default value is controlled by the
131- [ --diagnostic-dir] ( #cli_diagnostic_dir_directory ) command line option.
131+ [ --diagnostic-dir] ( #cli_diagnostic_dir_directory ) command- line option.
132132
133133### ` --cpu-prof-interval `
134134<!-- YAML
@@ -369,7 +369,7 @@ Specify the directory where the heap profiles generated by `--heap-prof` will
369369be placed.
370370
371371The default value is controlled by the
372- [ --diagnostic-dir] ( #cli_diagnostic_dir_directory ) command line option.
372+ [ --diagnostic-dir] ( #cli_diagnostic_dir_directory ) command- line option.
373373
374374### ` --heap-prof-interval `
375375<!-- YAML
@@ -548,7 +548,7 @@ Emit pending deprecation warnings.
548548
549549Pending deprecations are generally identical to a runtime deprecation with the
550550notable exception that they are turned * off* by default and will not be emitted
551- unless either the ` --pending-deprecation ` command line flag, or the
551+ unless either the ` --pending-deprecation ` command- line flag, or the
552552` NODE_PENDING_DEPRECATION=1 ` environment variable, is set. Pending deprecations
553553are used to provide a kind of selective "early warning" mechanism that
554554developers may leverage to detect deprecated API usage.
@@ -594,7 +594,7 @@ be thrown if `moduleA` attempts to require `moduleB` as a peer dependency:
594594 └── package.json
595595```
596596
597- The ` --preserve-symlinks ` command line flag instructs Node.js to use the
597+ The ` --preserve-symlinks ` command- line flag instructs Node.js to use the
598598symlink path for modules as opposed to the real path, allowing symbolically
599599linked peer dependencies to be found.
600600
@@ -653,7 +653,7 @@ warning will be written to stderr instead.
653653
654654The ` file ` name may be an absolute path. If it is not, the default directory it
655655will be written to is controlled by the
656- [ --diagnostic-dir] ( #cli_diagnostic_dir_directory ) command line option.
656+ [ --diagnostic-dir] ( #cli_diagnostic_dir_directory ) command- line option.
657657
658658### ` --report-compact `
659659<!-- YAML
@@ -1033,7 +1033,7 @@ The following values are valid for `mode`:
10331033added: v0.1.3
10341034-->
10351035
1036- Print V8 command line options.
1036+ Print V8 command- line options.
10371037
10381038### ` --v8-pool-size=num `
10391039<!-- YAML
@@ -1090,7 +1090,7 @@ and `"` are usable.
10901090added: v0.1.3
10911091-->
10921092
1093- Print node command line options.
1093+ Print node command- line options.
10941094The output of this option is less detailed than this document.
10951095
10961096### ` -i ` , ` --interactive `
@@ -1185,8 +1185,8 @@ When set to `1`, process warnings are silenced.
11851185added: v8.0.0
11861186-->
11871187
1188- A space-separated list of command line options. ` options... ` are interpreted
1189- before command line options, so command line options will override or
1188+ A space-separated list of command- line options. ` options... ` are interpreted
1189+ before command- line options, so command- line options will override or
11901190compound after anything in ` options... ` . Node.js will exit with an error if
11911191an option that is not allowed in the environment is used, such as ` -p ` or a
11921192script file.
@@ -1197,7 +1197,7 @@ If an option value contains a space, it can be escaped using double quotes:
11971197NODE_OPTIONS=' --require "./my path/file.js"'
11981198```
11991199
1200- A singleton flag passed as a command line option will override the same flag
1200+ A singleton flag passed as a command- line option will override the same flag
12011201passed into ` NODE_OPTIONS ` :
12021202
12031203``` bash
@@ -1206,7 +1206,7 @@ NODE_OPTIONS='--inspect=localhost:4444' node --inspect=localhost:5555
12061206```
12071207
12081208A flag that can be passed multiple times will be treated as if its
1209- ` NODE_OPTIONS ` instances were passed first, and then its command line
1209+ ` NODE_OPTIONS ` instances were passed first, and then its command- line
12101210instances afterwards:
12111211
12121212``` bash
@@ -1331,7 +1331,7 @@ When set to `1`, emit pending deprecation warnings.
13311331
13321332Pending deprecations are generally identical to a runtime deprecation with the
13331333notable exception that they are turned * off* by default and will not be emitted
1334- unless either the ` --pending-deprecation ` command line flag, or the
1334+ unless either the ` --pending-deprecation ` command- line flag, or the
13351335` NODE_PENDING_DEPRECATION=1 ` environment variable, is set. Pending deprecations
13361336are used to provide a kind of selective "early warning" mechanism that
13371337developers may leverage to detect deprecated API usage.
@@ -1479,7 +1479,7 @@ Load an OpenSSL configuration file on startup. Among other uses, this can be
14791479used to enable FIPS-compliant crypto if Node.js is built with `./configure
14801480--openssl-fips`.
14811481
1482- If the [ ` --openssl-config ` ] [ ] command line option is used, the environment
1482+ If the [ ` --openssl-config ` ] [ ] command- line option is used, the environment
14831483variable is ignored.
14841484
14851485### ` SSL_CERT_DIR=dir `
0 commit comments