node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
### Version All ### Platform ```text All ``` ### Subsystem fs ### What steps will reproduce the bug? ``` const { cpSync, cp, promises } = require('node:fs'); cpSync(Buffer.from('dirA'), Buffer.from('dirB'), {...
### Version v23.7.0 ### Platform ```text Microsoft Windows NT 10.0.26100.0 x64 ``` ### Subsystem _No response_ ### What steps will reproduce the bug? I've repeatedly encountered an issue where Node.js...
### Version 18.14.2 ### Platform ```text Microsoft Windows NT 10.0.22631.0 x64 ``` ### Subsystem _No response_ ### What steps will reproduce the bug? Please try to connect to mongoose with...
### Version 20.18.0 ### Platform ```text ``` ### Subsystem crypto ### What steps will reproduce the bug? Problem around with part of code - https://github.com/nodejs/node/blob/da5f7aca6ac1fac2b7840dc11c0ef8e740cfc414/src/crypto/crypto_tls.cc#L1559C1-L1564C58 After creating `Utf8Value` object code...
### Version 22.6.0 ### Platform ```text Run docker container with image node:22.6.0-bullseye-slim in k8s ``` ### Subsystem _No response_ ### What steps will reproduce the bug? I don't know what...
### Version 23.1.0 ### Platform ```text * fails on Debian 12 as a regular user with statically specified ports * fails on Windows 10 as a regular user with statically...
Backport of https://github.com/nodejs/node/pull/58385
For the sync methods spawnSync(), execSync() and execFileSync(), when the stdio option is set to anything other than 'pipe', the stdout and stderr returned from the C++ code will be...
This patch adds an `evaluate` hook that can be used as a supported alternative to monkey-patching the CJS module loader, when the primary use case is to modify the exports...
Fixes: https://github.com/nodejs/node/issues/58331 Many syntax errors are incorrectly treated as requiring ESM recompilation, but since they can't be clearly distinguished from top-level await-related errors, the current fix ends up handling them...