Skip to content

Commit

Permalink
doc: fix history of process.features
Browse files Browse the repository at this point in the history
PR-URL: #54982
Refs: aa0308d
Refs: 9010f5f
Refs: 52a40e0
Refs: b3ef289
Refs: #2564
Refs: #25819
Refs: #27311
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
  • Loading branch information
aduh95 authored and marco-ippolito committed Feb 10, 2025
1 parent 1c8b474 commit 2e6d76b
Showing 1 changed file with 97 additions and 0 deletions.
97 changes: 97 additions & 0 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -1877,6 +1877,103 @@ a code.
Specifying a code to [`process.exit(code)`][`process.exit()`] will override any
previous setting of `process.exitCode`.
## `process.features.cached_builtins`
<!-- YAML
added: v12.0.0
-->
* {boolean}
A boolean value that is `true` if the current Node.js build is caching builtin modules.
## `process.features.debug`
<!-- YAML
added: v0.5.5
-->
* {boolean}
A boolean value that is `true` if the current Node.js build is a debug build.
## `process.features.inspector`
<!-- YAML
added: v11.10.0
-->
* {boolean}
A boolean value that is `true` if the current Node.js build includes the inspector.
## `process.features.ipv6`
<!-- YAML
added: v0.5.3
-->
* {boolean}
A boolean value that is `true` if the current Node.js build includes support for IPv6.
## `process.features.tls`
<!-- YAML
added: v0.5.3
-->
* {boolean}
A boolean value that is `true` if the current Node.js build includes support for TLS.
## `process.features.tls_alpn`
<!-- YAML
added: v4.8.0
-->
* {boolean}
A boolean value that is `true` if the current Node.js build includes support for ALPN in TLS.
***
## `process.features.tls_ocsp`
<!-- YAML
added: v0.11.13
-->
* {boolean}
A boolean value that is `true` if the current Node.js build includes support for OCSP in TLS.
***
## `process.features.tls_sni`
<!-- YAML
added: v0.5.3
-->
* {boolean}
A boolean value that is `true` if the current Node.js build includes support for SNI in TLS.
***
## `process.features.uv`
<!-- YAML
added: v0.5.3
-->
* {boolean}
A boolean value that is `true` if the current Node.js build includes support for libuv.
Since it's currently not possible to build Node.js without libuv, this value is always `true`.
## `process.getActiveResourcesInfo()`
<!-- YAML
Expand Down

0 comments on commit 2e6d76b

Please sign in to comment.