@@ -116,6 +116,15 @@ Print stack traces for process warnings (including deprecations).
116
116
Print a stack trace whenever synchronous I/O is detected after the first turn
117
117
of the event loop.
118
118
119
+ .TP
120
+ .BR \-\- trace\- events\- enabled
121
+ Enables the collection of trace event tracing information.
122
+
123
+ .TP
124
+ .BR \-\- trace\- event\- categories " " \fI categories \fR
125
+ A comma separated list of categories that should be traced when trace event
126
+ tracing is enabled using \fB --trace-events-enabled \fR .
127
+
119
128
.TP
120
129
.BR \-\- zero\- fill\- buffers
121
130
Automatically zero-fills all newly allocated Buffer and SlowBuffer instances.
@@ -182,28 +191,36 @@ Specify ICU data load path. (overrides \fBNODE_ICU_DATA\fR)
182
191
\' ,\' \- separated list of core modules that should print debug information.
183
192
184
193
.TP
185
- .BR NODE_PATH =\fI path \fR [: \fI . .. \fR ]
186
- \' : \' \- separated list of directories prefixed to the module search path .
194
+ .BR NODE_DISABLE_COLORS =\fI 1 \fR
195
+ When set to \fI 1 \fR , colors will not be used in the REPL .
187
196
188
197
.TP
189
- .BR NODE_DISABLE_COLORS=1
190
- When set to 1 colors will not be used in the REPL.
198
+ .BR NODE_EXTRA_CA_CERTS =\fI file \fR
199
+ When set, the well known "root" CAs (like VeriSign) will be extended with the
200
+ extra certificates in \fI file \fR . The file should consist of one or more
201
+ trusted certificates in PEM format. A message will be emitted (once) with
202
+ \fB process.emitWarning() \fR if the file is missing or misformatted, but any
203
+ errors are otherwise ignored.
191
204
192
205
.TP
193
206
.BR NODE_ICU_DATA =\fI file \fR
194
207
Data path for ICU (Intl object) data. Will extend linked-in data when compiled
195
208
with small\- icu support.
196
209
210
+ .TP
211
+ .BR NODE_PATH =\fI path \fR [:\fI ... \fR ]
212
+ \' :\' \- separated list of directories prefixed to the module search path.
213
+
197
214
.TP
198
215
.BR NODE_REPL_HISTORY =\fI file \fR
199
216
Path to the file used to store the persistent REPL history. The default path
200
- is ~/.node_repl_history, which is overridden by this variable. Setting the
217
+ is \fB ~/.node_repl_history \fR , which is overridden by this variable. Setting the
201
218
value to an empty string ("" or " ") disables persistent REPL history.
202
219
203
220
.TP
204
- .BR NODE_TTY_UNSAFE_ASYNC=1
205
- When set to 1 , writes to stdout and stderr will be non-blocking and asynchronous
206
- when outputting to a TTY on platforms which support async stdio.
221
+ .BR NODE_TTY_UNSAFE_ASYNC = \fI 1 \fR
222
+ When set to \fI 1 \fR , writes to stdout and stderr will be non-blocking and
223
+ asynchronous when outputting to a TTY on platforms which support async stdio.
207
224
Setting this will void any guarantee that stdio will not be interleaved or
208
225
dropped at program exit. \fB Avoid use. \fR
209
226
0 commit comments