@@ -184,8 +184,8 @@ Error: Access to this API has been restricted
184184
185185The process needs to have access to the ` index.js ` module:
186186
187- ``` console
188- $ node --experimental-permission --allow-fs-read=/path/to/index.js index.js
187+ ``` bash
188+ node --experimental-permission --allow-fs-read=/path/to/index.js index.js
189189```
190190
191191### ` --allow-fs-write `
@@ -314,9 +314,9 @@ added: v10.12.0
314314
315315Print source-able bash completion script for Node.js.
316316
317- ``` console
318- $ node --completion-bash > node_bash_completion
319- $ source node_bash_completion
317+ ``` bash
318+ node --completion-bash > node_bash_completion
319+ source node_bash_completion
320320```
321321
322322### ` -C condition ` , ` --conditions=condition `
@@ -339,8 +339,8 @@ The default Node.js conditions of `"node"`, `"default"`, `"import"`, and
339339
340340For example, to run a module with "development" resolutions:
341341
342- ``` console
343- $ node -C development app.js
342+ ``` bash
343+ node -C development app.js
344344```
345345
346346### ` --cpu-prof `
@@ -1854,8 +1854,8 @@ Use `--watch-path` to specify what paths to watch.
18541854This flag cannot be combined with
18551855` --check ` , ` --eval ` , ` --interactive ` , or the REPL.
18561856
1857- ``` console
1858- $ node --watch index.js
1857+ ``` bash
1858+ node --watch index.js
18591859```
18601860
18611861### ` --watch-path `
@@ -1877,8 +1877,8 @@ combination with `--watch`.
18771877This flag cannot be combined with
18781878` --check ` , ` --eval ` , ` --interactive ` , ` --test ` , or the REPL.
18791879
1880- ``` console
1881- $ node --watch-path=./src --watch-path=./tests index.js
1880+ ``` bash
1881+ node --watch-path=./src --watch-path=./tests index.js
18821882```
18831883
18841884This option is only supported on macOS and Windows.
@@ -1889,8 +1889,8 @@ when the option is used on a platform that does not support it.
18891889
18901890Disable the clearing of the console when watch mode restarts the process.
18911891
1892- ``` console
1893- $ node --watch --watch-preserve-output test.js
1892+ ``` bash
1893+ node --watch --watch-preserve-output test.js
18941894```
18951895
18961896### ` --zero-fill-buffers `
@@ -2525,8 +2525,8 @@ garbage collection in an effort to free unused memory.
25252525On a machine with 2 GiB of memory, consider setting this to
252625261536 (1.5 GiB) to leave some memory for other uses and avoid swapping.
25272527
2528- ``` console
2529- $ node --max-old-space-size=1536 index.js
2528+ ``` bash
2529+ node --max-old-space-size=1536 index.js
25302530```
25312531
25322532### ` --max-semi-space-size=SIZE ` (in megabytes)
0 commit comments