node icon indicating copy to clipboard operation
node copied to clipboard

Node.js JavaScript runtime ✨🐢🚀✨

Results 724 node issues
Sort by recently updated
recently updated
newest added

**Edit:** If someone can come up with a better shim for `execve` for Windows, that'd be *far* better. The form below is *very* expensive and *very* horrible. **Edit 2:** Linked...

child_process
feature request

Signed-off-by: Meghana Ramesh

test
code-and-learn
author ready
needs-ci

One more attempt to make test from https://github.com/nodejs/node/pull/43714 pass on `v16.x-staging` and avoid similar test failures on `main` in the future. If filesystem doesn't support negative timestamps and `stat` returns...

fs
test
needs-ci

Used SIMD to improve bufferswap performance including below APIs: ``` buffer.swap16() buffer.swap32() buffer.swap64() ``` According to Node.js buffer API design, only the buffer over 128 bytes go into C++ level...

lib / src
needs-ci

**Is your feature request related to a problem? Please describe.** Not exactly a problem. Maybe something that will make life easier. Currently to require modules before executing a script we...

module
feature request
cli
stale

Node now has `internal/errors.js` module which allows to set static error codes for errors, which is great. Would be good to expose Node's internal error constructors in a new module...

feature request
errors
stale

Currently `stream.destroy` will wait for `stream._construct` to complete before calling `stream._destroy` which makes it difficult to abort `stream._construct` without overriding `stream.destroy`. Would be nice to have a way around this,.

stream
feature request
stale

### What is the problem this feature will solve? With the advent of `"type":"module"` and `.mjs` files no longer supporting any level of module loading hooks that might inject coverage...

feature request
stale

Changes made to the NODE_OPTIONS environment variables weren't properly taken into account when spawning workers, unlike how `child_process.fork` works. Fixes part of https://github.com/nodejs/node/issues/37410 (I didn't touch the `process.execArgv` part, I...

worker
needs-ci

**Is your feature request related to a problem? Please describe.** I'd like to suppress experimental warnings while still seeing any other errors. In particular when I am using native ES...

feature request
process