| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 73e0bb1 commit 8bb67a1
6 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -465,7 +465,7 @@ if they had been specified on the command line before the actual command line | |||
| 465 | 465 | (so they can be overridden). Node will exit with an error if an option that is | |
| 466 | 466 | not allowed in the environment is used, such as `-p` or a script file. | |
| 467 | 467 | ||
| 468 | - Node options that are allowed are: | ||
| 468 | + Node.js options that are allowed are: | ||
| 469 | 469 | - `--enable-fips` | |
| 470 | 470 | - `--force-fips` | |
| 471 | 471 | - `--icu-data-dir` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -90,7 +90,7 @@ and is not available on Linux. | |||
| 90 | 90 | ||
| 91 | 91 | Most Unix syscalls have Windows equivalents, but behavior may differ on Windows | |
| 92 | 92 | relative to Linux and macOS. For an example of the subtle ways in which it's | |
| 93 | - sometimes impossible to replace Unix syscall semantics on Windows, see [Node | ||
| 93 | + sometimes impossible to replace Unix syscall semantics on Windows, see [Node.js | ||
| 94 | 94 | issue 4760](https://github.com/nodejs/node/issues/4760). | |
| 95 | 95 | ||
| 96 | 96 | [submit an issue]: https://github.com/nodejs/node/issues/new | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -121,7 +121,7 @@ session.post('Runtime.evaluate', { expression: '2 + 2' }, | |||
| 121 | 121 | The latest version of the V8 inspector protocol is published on the | |
| 122 | 122 | [Chrome DevTools Protocol Viewer][]. | |
| 123 | 123 | ||
| 124 | - Node inspector supports all the Chrome DevTools Protocol domains declared | ||
| 124 | + Node.js inspector supports all the Chrome DevTools Protocol domains declared | ||
| 125 | 125 | by V8. Chrome DevTools Protocol domain provides an interface for interacting | |
| 126 | 126 | with one of the runtime agents used to inspect the application state and listen | |
| 127 | 127 | to the run-time events. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -375,8 +375,9 @@ example, then `require('./some-library')` would attempt to load: | |||
| 375 | 375 | If the module identifier passed to `require()` is not a | |
| 376 | 376 | [core](#modules_core_modules) module, and does not begin with `'/'`, `'../'`, or | |
| 377 | 377 | `'./'`, then Node.js starts at the parent directory of the current module, and | |
| 378 | - adds `/node_modules`, and attempts to load the module from that location. Node | ||
| 379 | - will not append `node_modules` to a path already ending in `node_modules`. | ||
| 378 | + adds `/node_modules`, and attempts to load the module from that location. | ||
| 379 | + Node.js will not append `node_modules` to a path already ending in | ||
| 380 | + `node_modules`. | ||
| 380 | 381 | ||
| 381 | 382 | If it is not found there, then it moves to the parent directory, and so | |
| 382 | 383 | on, until the root of the file system is reached. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -15,8 +15,8 @@ Node always includes these constants in the final build. | |||
| 15 | 15 | ||
| 16 | 16 | ### Node Debug Symbols | |
| 17 | 17 | ||
| 18 | - Node prefixes all postmortem constants with `nodedbg_`, and they complement V8 | ||
| 19 | - constants by providing ways to inspect Node-specific structures, like | ||
| 18 | + Node.js prefixes all postmortem constants with `nodedbg_`, and they complement | ||
| 19 | + V8 constants by providing ways to inspect Node.js-specific structures, like | ||
| 20 | 20 | `node::Environment`, `node::BaseObject` and its descendants, classes from | |
| 21 | 21 | `src/utils.h` and others. Those constants are declared in | |
| 22 | 22 | `src/node_postmortem_metadata.cc`, and most of them are calculated at compile | |
@@ -62,7 +62,7 @@ class ReqWrap : public AsyncWrap { | |||
| 62 | 62 | ``` | |
| 63 | 63 | ||
| 64 | 64 | There are also tests on `test/cctest/test_node_postmortem_metadata.cc` to make | |
| 65 | - sure all Node postmortem metadata are calculated correctly. | ||
| 65 | + sure all Node.js postmortem metadata are calculated correctly. | ||
| 66 | 66 | ||
| 67 | 67 | ## Tools and References | |
| 68 | 68 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -71,7 +71,7 @@ Print node's version. | |||
| 71 | 71 | ||
| 72 | 72 | .TP | |
| 73 | 73 | .BR \-h ", " \-\-help | |
| 74 | - Print node command line options. | ||
| 74 | + Print Node.js command line options. | ||
| 75 | 75 | The output of this option is less detailed than this document. | |
| 76 | 76 | ||
| 77 | 77 | .TP | |
@@ -93,7 +93,7 @@ Open the REPL even if stdin does not appear to be a terminal. | |||
| 93 | 93 | .TP | |
| 94 | 94 | .BR \-r ", " \-\-require " " \fImodule\fR | |
| 95 | 95 | Preload the specified module at startup. Follows `require()`'s module resolution | |
| 96 | - rules. \fImodule\fR may be either a path to a file, or a node module name. | ||
| 96 | + rules. \fImodule\fR may be either a path to a file, or a Node.js module name. | ||
| 97 | 97 | ||
| 98 | 98 | .TP | |
| 99 | 99 | .BR \-\-inspect \fI[=[host:]port]\fR | |
@@ -294,7 +294,7 @@ When set to \fI1\fR, the http2 module is suppressed. | |||
| 294 | 294 | .BR NODE_OPTIONS =\fIoptions...\fR | |
| 295 | 295 | A space-separated list of command line options. \fBoptions...\fR are interpreted | |
| 296 | 296 | as if they had been specified on the command line before the actual command line | |
| 297 | - (so they can be overridden). Node will exit with an error if an option that is | ||
| 297 | + (so they can be overridden). Node.js will exit with an error if an option that is | ||
| 298 | 298 | not allowed in the environment is used, such as \fB-p\fR or a script file. | |
| 299 | 299 | ||
| 300 | 300 | .TP | |
| Back | FazBrowse Home | New Git URL |
0 commit comments