node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
This PR was generated by tools/find-inactive-collaborators.yml. @nodejs/tsc Please follow up with the [offboarding tasks](https://github.com/nodejs/node/blob/main/doc/contributing/offboarding.md).
## Change Summary This PR changes `ExperimentalWarnings` to `ExperimentalWarning` in the documentation for the latest version of NodeJS as of this writing - `v21.6.1`. ## Why? I am using the...
### What is the problem this feature will solve? In worker threads, `process.stdout.isTTY` and `process.stderr.isTTY` are `undefined`. However, they do forward stdout/stderr to the main thread, and the main thread...
### Version v21.6.1 ### Platform Darwin ****** 23.0.0 Darwin Kernel Version 23.0.0: Fri Sep 15 14:42:42 PDT 2023; root:xnu-10002.1.13~1/RELEASE_X86_64 x86_64 ### Subsystem globals, streams/web ### What steps will reproduce the...
### What is the problem this feature will solve? Naive calls to createServer happily resolve host names to link-local addresses, which then fail to listen: ``` $ node -e "net.createServer(c=>console.log).listen(5555,'zen')"...
### Version v18.17.1, v20.6.1 ### Platform Linux arch-hp 6.4.3-arch1-2 #1 SMP PREEMPT_DYNAMIC Sat, 15 Jul 2023 19:25:49 +0000 x86_64 GNU/Linux ### Subsystem _No response_ ### What steps will reproduce the...
# 📗 API Reference Docs Problem - **Version**:12+ - **Platform**: all - **Subsystem**: n/a ## Location _Section of the site where the content exists_ Affected URL(s): - https://nodejs.org/api/cli.html#cli_max_old_space_size_size_in_megabytes could be...
### Version At least v18.x and by the looks of it, everything since ### Platform _No response_ ### Subsystem _No response_ ### What steps will reproduce the bug? Configuring with...
### Version v20.5.0 (tried on node 16 and 21) ### Platform ([ronment]::OSVersion.VersionString) x64 ### What steps will reproduce the bug? ```js require("assert").deepStrictEqual( { common: {}, key1: "", creator: "123", },...
Previously we only had an internal assertion to ensure certain code is executed before any user-provided CJS is run. This patch adds another assertion for ESM. Note that this internal...