1
- # Command line options
1
+ # Command- line options
2
2
3
3
<!-- introduced_in=v5.9.1-->
4
4
<!-- type=misc-->
@@ -43,7 +43,7 @@ environment variable.
43
43
added: v8.0.0
44
44
-->
45
45
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,
47
47
meaning that the script is read from stdin, and the rest of the options
48
48
are passed to that script.
49
49
@@ -128,7 +128,7 @@ Specify the directory where the CPU profiles generated by `--cpu-prof` will
128
128
be placed.
129
129
130
130
The 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.
132
132
133
133
### ` --cpu-prof-interval `
134
134
<!-- YAML
@@ -369,7 +369,7 @@ Specify the directory where the heap profiles generated by `--heap-prof` will
369
369
be placed.
370
370
371
371
The 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.
373
373
374
374
### ` --heap-prof-interval `
375
375
<!-- YAML
@@ -548,7 +548,7 @@ Emit pending deprecation warnings.
548
548
549
549
Pending deprecations are generally identical to a runtime deprecation with the
550
550
notable 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
552
552
` NODE_PENDING_DEPRECATION=1 ` environment variable, is set. Pending deprecations
553
553
are used to provide a kind of selective "early warning" mechanism that
554
554
developers may leverage to detect deprecated API usage.
@@ -594,7 +594,7 @@ be thrown if `moduleA` attempts to require `moduleB` as a peer dependency:
594
594
└── package.json
595
595
```
596
596
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
598
598
symlink path for modules as opposed to the real path, allowing symbolically
599
599
linked peer dependencies to be found.
600
600
@@ -653,7 +653,7 @@ warning will be written to stderr instead.
653
653
654
654
The ` file ` name may be an absolute path. If it is not, the default directory it
655
655
will 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.
657
657
658
658
### ` --report-compact `
659
659
<!-- YAML
@@ -1033,7 +1033,7 @@ The following values are valid for `mode`:
1033
1033
added: v0.1.3
1034
1034
-->
1035
1035
1036
- Print V8 command line options.
1036
+ Print V8 command- line options.
1037
1037
1038
1038
### ` --v8-pool-size=num `
1039
1039
<!-- YAML
@@ -1090,7 +1090,7 @@ and `"` are usable.
1090
1090
added: v0.1.3
1091
1091
-->
1092
1092
1093
- Print node command line options.
1093
+ Print node command- line options.
1094
1094
The output of this option is less detailed than this document.
1095
1095
1096
1096
### ` -i ` , ` --interactive `
@@ -1185,8 +1185,8 @@ When set to `1`, process warnings are silenced.
1185
1185
added: v8.0.0
1186
1186
-->
1187
1187
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
1190
1190
compound after anything in ` options... ` . Node.js will exit with an error if
1191
1191
an option that is not allowed in the environment is used, such as ` -p ` or a
1192
1192
script file.
@@ -1197,7 +1197,7 @@ If an option value contains a space, it can be escaped using double quotes:
1197
1197
NODE_OPTIONS=' --require "./my path/file.js"'
1198
1198
```
1199
1199
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
1201
1201
passed into ` NODE_OPTIONS ` :
1202
1202
1203
1203
``` bash
@@ -1206,7 +1206,7 @@ NODE_OPTIONS='--inspect=localhost:4444' node --inspect=localhost:5555
1206
1206
```
1207
1207
1208
1208
A 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
1210
1210
instances afterwards:
1211
1211
1212
1212
``` bash
@@ -1331,7 +1331,7 @@ When set to `1`, emit pending deprecation warnings.
1331
1331
1332
1332
Pending deprecations are generally identical to a runtime deprecation with the
1333
1333
notable 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
1335
1335
` NODE_PENDING_DEPRECATION=1 ` environment variable, is set. Pending deprecations
1336
1336
are used to provide a kind of selective "early warning" mechanism that
1337
1337
developers may leverage to detect deprecated API usage.
@@ -1479,7 +1479,7 @@ Load an OpenSSL configuration file on startup. Among other uses, this can be
1479
1479
used to enable FIPS-compliant crypto if Node.js is built with `./configure
1480
1480
--openssl-fips`.
1481
1481
1482
- If the [ ` --openssl-config ` ] [ ] command line option is used, the environment
1482
+ If the [ ` --openssl-config ` ] [ ] command- line option is used, the environment
1483
1483
variable is ignored.
1484
1484
1485
1485
### ` SSL_CERT_DIR=dir `
0 commit comments