@@ -1877,6 +1877,103 @@ a code.
|
1877 | 1877 | Specifying a code to [`process.exit(code)`][`process.exit()`] will override any
|
1878 | 1878 | previous setting of `process.exitCode`.
|
1879 | 1879 |
|
| 1880 | +## `process.features.cached_builtins` |
| 1881 | +
|
| 1882 | +<!-- YAML |
| 1883 | +added: REPLACEME |
| 1884 | +--> |
| 1885 | +
|
| 1886 | +* {boolean} |
| 1887 | +
|
| 1888 | +A boolean value that is `true` if the current Node.js build is caching builtin modules. |
| 1889 | +
|
| 1890 | +## `process.features.debug` |
| 1891 | +
|
| 1892 | +<!-- YAML |
| 1893 | +added: REPLACEME |
| 1894 | +--> |
| 1895 | +
|
| 1896 | +* {boolean} |
| 1897 | +
|
| 1898 | +A boolean value that is `true` if the current Node.js build is a debug build. |
| 1899 | +
|
| 1900 | +## `process.features.inspector` |
| 1901 | +
|
| 1902 | +<!-- YAML |
| 1903 | +added: REPLACEME |
| 1904 | +--> |
| 1905 | +
|
| 1906 | +* {boolean} |
| 1907 | +
|
| 1908 | +A boolean value that is `true` if the current Node.js build includes the inspector. |
| 1909 | +
|
| 1910 | +## `process.features.ipv6` |
| 1911 | +
|
| 1912 | +<!-- YAML |
| 1913 | +added: REPLACEME |
| 1914 | +--> |
| 1915 | +
|
| 1916 | +* {boolean} |
| 1917 | +
|
| 1918 | +A boolean value that is `true` if the current Node.js build includes support for IPv6. |
| 1919 | +
|
| 1920 | +## `process.features.tls` |
| 1921 | +
|
| 1922 | +<!-- YAML |
| 1923 | +added: REPLACEME |
| 1924 | +--> |
| 1925 | +
|
| 1926 | +* {boolean} |
| 1927 | +
|
| 1928 | +A boolean value that is `true` if the current Node.js build includes support for TLS. |
| 1929 | +
|
| 1930 | +## `process.features.tls_alpn` |
| 1931 | +
|
| 1932 | +<!-- YAML |
| 1933 | +added: REPLACEME |
| 1934 | +--> |
| 1935 | +
|
| 1936 | +* {boolean} |
| 1937 | +
|
| 1938 | +A boolean value that is `true` if the current Node.js build includes support for ALPN in TLS. |
| 1939 | +
|
| 1940 | +*** |
| 1941 | +
|
| 1942 | +## `process.features.tls_ocsp` |
| 1943 | +
|
| 1944 | +<!-- YAML |
| 1945 | +added: REPLACEME |
| 1946 | +--> |
| 1947 | +
|
| 1948 | +* {boolean} |
| 1949 | +
|
| 1950 | +A boolean value that is `true` if the current Node.js build includes support for OCSP in TLS. |
| 1951 | +
|
| 1952 | +*** |
| 1953 | +
|
| 1954 | +## `process.features.tls_sni` |
| 1955 | +
|
| 1956 | +<!-- YAML |
| 1957 | +added: REPLACEME |
| 1958 | +--> |
| 1959 | +
|
| 1960 | +* {boolean} |
| 1961 | +
|
| 1962 | +A boolean value that is `true` if the current Node.js build includes support for SNI in TLS. |
| 1963 | +
|
| 1964 | +*** |
| 1965 | +
|
| 1966 | +## `process.features.uv` |
| 1967 | +
|
| 1968 | +<!-- YAML |
| 1969 | +added: REPLACEME |
| 1970 | +--> |
| 1971 | +
|
| 1972 | +* {boolean} |
| 1973 | +
|
| 1974 | +A boolean value that is `true` if the current Node.js build includes support for libuv. |
| 1975 | +Since it's currently not possible to build Node.js without libuv, this value is always `true`. |
| 1976 | +
|
1880 | 1977 | ## `process.getActiveResourcesInfo()`
|
1881 | 1978 |
|
1882 | 1979 | <!-- YAML
|
|
0 commit comments