node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
On some Linux systems (not reproducible in CI, but reproducible locally), this test will fail because the port 42 is not priviledged. For example, on my Kali Linux installation: ```console...
This PR does two things but I believe they are related enough to be included in a single PR. 1. This PR updates the `test-cli-node-options-doc` test to be more accurate,...
Depends on https://github.com/nodejs/node/pull/55175. It should land only on Node.js 24*. To avoid inconsistencies, I'm adding a blocked label so we land on `main` only when 23 goes out.
* **Version**: `v14.12.0` * **Platform**: `Darwin Simens-MacBook-Pro.local 19.6.0 Darwin Kernel Version 19.6.0: Mon Aug 31 22:12:52 PDT 2020; root:xnu-6153.141.2~1/RELEASE_X86_64 x86_64` * **Subsystem**: `vm` ### What steps will reproduce the bug?...
### Test `parallel/test-runner-output` ### Platform Windows ### Console output ```console not ok 2761 parallel/test-runner-output --- duration_ms: 5831.75900 severity: fail exitcode: 1 stack: |- ⶠtest runner output â test-runner/output/abort.js (5044.243602ms)...
compiler-rt supports `__atomic_is_lock_free` since LLVM 12[0]. Requiring `-latomic` on clang builds introduces a dependency on libgcc, which is often undesirable on LLVM-based build environments. This change makes sure it's never...
### Version main ### Platform _No response_ ### Subsystem build ### What steps will reproduce the bug? on windows git bash: ```shell ./configure --with-intl=full-icu --with-icu-source=https://github.com/unicode-org/icu/releases/download/release-76-rc/icu4c-76_1-src.tgz ``` ### How often does...
This is a sketch of a proposal, so please don’t pepper me with questions about how it would work; I don’t know. It’s an early idea that I want to...
Fixes: https://github.com/nodejs/node/issues/48771 ## What is the problem being solved? #48771 Reported `request` object returned from `http.request` method cannot catch `error` events triggered when there’s an immediate failure trying to connect...
Hi! This PR stops draining worker tasks on the main thread. I believe it's not necessary since V8 will join its own worker tasks as part of v8::Isolate::Dispose. It may...