node
node copied to clipboard
Node.js JavaScript runtime β¨π’πβ¨
### What is the problem this feature will solve? This issue is to test the water a little bit. Node supports zlib natively, which takes care of the compression /...
I'm getting the following error when trying to run a simple npx command on Windows. I opened the issue to this repository because we are distributing `npm`, we define the...
> Spun off from https://github.com/nodejs/node/pull/53619#issuecomment-2196867153; I wanted to start a new issue for this as itβs arguably a separate issue from unflagging `--experimental-detect-module`. cc @cjihrig @nodejs/test_runner > Regarding the module...
Add documentation for the `process.traceProcessWarnings` property in the process module. This property allows for programmatic control of warning trace settings in Node.js applications and was previously undocumented despite being available...
Spinning from https://github.com/nodejs/node/pull/52535#issuecomment-2059390083 Currently, the built-in on-disk compilation cache can only be enabled by `NODE_COMPILE_CACHE`. It's possible for the end user to control where the `NODE_COMPILE_CACHE` is stored and so...
Hey, https://github.com/nodejs/node/pull/46678 landed adding a warning when NaN is passed to timers. I noticed a test was missing for timers/promises there (the code works on both paths) - rather than...
Attempt to fix: https://github.com/nodejs/node/issues/52963 There are a few places could cause the test to timeout, first of all rely on `process.exit` was probably not a great idea. Timeout was never...
Adding missing category on docs of available categories that was introduced by https://github.com/nodejs/node/pull/52213.
### What is the problem this feature will solve? When multiple callers use [`Readable[Symbol.asyncIterator]`](https://github.com/nodejs/node/blob/4c3e9659ed116e610d8da8aa0b692cc8c6abb6e4/lib/internal/streams/readable.js#L1336), each caller receives a partial result. ```js import {Readable} from 'node:stream' const stream = Readable.from(['a', 'b',...