node
node copied to clipboard
Node.js JavaScript runtime β¨π’πβ¨
There is an edge case left from https://github.com/nodejs/node/pull/53114 ### Reproduce step: ```js // create dependency index.js export const a = 1; export const b = 2; export const c =...
### Affected URL(s) https://nodejs.org/docs/latest/api/stream.html ### Description of the problem Hello! I have experienced a bug with docs: When I try to select a code snippet, the scrolling goes up very...
Adds V8 Fast API to `fs.closeSync(fd)` implementation cc @nodejs/performance @nodejs/fs @nodejs/cpp-reviewers
Adds https://github.com/nodejs/node/issues/53598, warning about access granted to all files. Should there be a note in the docs, or should that be inlined into the warning?
This is mostly useful for implementing the ACME TLS-ALPN-01 challenge by overriding the certificate from a TLS server's `ALPNCallback`.
Closes [https://github.com/nodejs/node/issues/53497](https://github.com/nodejs/node/issues/53497)
This is a draft PR to unflag `--experimental-detect-module`. Iβm labeling it as donβt land for all current lines unless and until we determine that this isnβt a semver-major change; it...
# π API Reference Docs Problem - **Version**: 16.6.2 - **Platform**: Windows 10 x64 ## Location Many API sections ## Description If you open an API page and then go...
### What is the problem this feature will solve? It is currently not straightforward to know if an `uncaughtException` originated from an `EventEmitter` that emitted an `error` event without any...
Refs: #35403 Currently, the project has 2 outcomes for different `realpath` functions with empty string arguments: ```js fs.realpathSync('') // Returns CWD await util.promisify(fs.realpath)('') // Returns CWD await fs.promises.realpath('') // ENOENT...