| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent cadb261 commit 2a2971b
37 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # Assert | |
| 2 | 2 | ||
| 3 | - Stability: 3 - Locked | ||
| 3 | + > Stability: 3 - Locked | ||
| 4 | 4 | ||
| 5 | 5 | The `assert` module provides a simple set of assertion tests that can be used to | |
| 6 | 6 | test invariants. The module is intended for internal use by Node.js, but can be | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # Buffer | |
| 2 | 2 | ||
| 3 | - Stability: 2 - Stable | ||
| 3 | + > Stability: 2 - Stable | ||
| 4 | 4 | ||
| 5 | 5 | Prior to the introduction of `TypedArray` in ECMAScript 2015 (ES6), the | |
| 6 | 6 | JavaScript language had no mechanism for reading or manipulating streams | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # Child Process | |
| 2 | 2 | ||
| 3 | - Stability: 2 - Stable | ||
| 3 | + > Stability: 2 - Stable | ||
| 4 | 4 | ||
| 5 | 5 | The `child_process` module provides the ability to spawn child processes in | |
| 6 | 6 | a manner that is similar, but not identical, to [`popen(3)`][]. This capability | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # Cluster | |
| 2 | 2 | ||
| 3 | - Stability: 2 - Stable | ||
| 3 | + > Stability: 2 - Stable | ||
| 4 | 4 | ||
| 5 | 5 | A single instance of Node.js runs in a single thread. To take advantage of | |
| 6 | 6 | multi-core systems the user will sometimes want to launch a cluster of Node.js | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # Console | |
| 2 | 2 | ||
| 3 | - Stability: 2 - Stable | ||
| 3 | + > Stability: 2 - Stable | ||
| 4 | 4 | ||
| 5 | 5 | The `console` module provides a simple debugging console that is similar to the | |
| 6 | 6 | JavaScript console mechanism provided by web browsers. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # Crypto | |
| 2 | 2 | ||
| 3 | - Stability: 2 - Stable | ||
| 3 | + > Stability: 2 - Stable | ||
| 4 | 4 | ||
| 5 | 5 | The `crypto` module provides cryptographic functionality that includes a set of | |
| 6 | 6 | wrappers for OpenSSL's hash, HMAC, cipher, decipher, sign and verify functions. | |
@@ -495,7 +495,7 @@ public point (key) is also generated and set in the ECDH object. | |||
| 495 | 495 | ||
| 496 | 496 | ### ecdh.setPublicKey(public_key[, encoding]) | |
| 497 | 497 | ||
| 498 | - Stability: 0 - Deprecated | ||
| 498 | + > Stability: 0 - Deprecated | ||
| 499 | 499 | ||
| 500 | 500 | Sets the EC Diffie-Hellman public key. Key encoding can be `'binary'`, | |
| 501 | 501 | `'hex'` or `'base64'`. If `encoding` is provided `public_key` is expected to | |
@@ -892,7 +892,7 @@ The `key` is the raw key used by the `algorithm` and `iv` is an | |||
| 892 | 892 | ||
| 893 | 893 | ### crypto.createCredentials(details) | |
| 894 | 894 | ||
| 895 | - Stability: 0 - Deprecated: Use [`tls.createSecureContext()`][] instead. | ||
| 895 | + > Stability: 0 - Deprecated: Use [`tls.createSecureContext()`][] instead. | ||
| 896 | 896 | ||
| 897 | 897 | The `crypto.createCredentials()` method is a deprecated alias for creating | |
| 898 | 898 | and returning a `tls.SecureContext` object. The `crypto.createCredentials()` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # Debugger | |
| 2 | 2 | ||
| 3 | - Stability: 2 - Stable | ||
| 3 | + > Stability: 2 - Stable | ||
| 4 | 4 | ||
| 5 | 5 | <!-- type=misc --> | |
| 6 | 6 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # UDP / Datagram Sockets | |
| 2 | 2 | ||
| 3 | - Stability: 2 - Stable | ||
| 3 | + > Stability: 2 - Stable | ||
| 4 | 4 | ||
| 5 | 5 | <!-- name=dgram --> | |
| 6 | 6 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | # DNS | |
| 2 | 2 | ||
| 3 | - Stability: 2 - Stable | ||
| 3 | + > Stability: 2 - Stable | ||
| 4 | 4 | ||
| 5 | 5 | The `dns` module contains functions belonging to two different categories: | |
| 6 | 6 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -64,7 +64,7 @@ Please do not suggest API changes in this area; they will be refused. | |||
| 64 | 64 | ||
| 65 | 65 | ## JSON Output | |
| 66 | 66 | ||
| 67 | - Stability: 1 - Experimental | ||
| 67 | + > Stability: 1 - Experimental | ||
| 68 | 68 | ||
| 69 | 69 | Every HTML file in the markdown has a corresponding JSON file with the | |
| 70 | 70 | same data. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments