node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
### What is the problem this feature will solve? Currently, the built-in number and currency formatting libraries in Node.js return "," (comma) as decimal separator and " " (whitespace) as...
### Version v18.16.0 ### Platform Darwin Alexs-MacBook-Pro-2.local 22.4.0 Darwin Kernel Version 22.4.0: Mon Mar 6 20:59:28 PST 2023; root:xnu-8796.101.5~3/RELEASE_ARM64_T6000 arm64 ### Subsystem _No response_ ### What steps will reproduce the...
### Version 20.3.0 ### Platform linux ### Subsystem fs ### What steps will reproduce the bug? I put together a repro at https://github.com/cjihrig/recursive-watcher-bug that shows the following passing on Windows...
Refs: https://github.com/nodejs/node/issues/48049 When IPv6 is disabled IBM i returns EUNATCH (errno 42). For now, I've added an errno check in test case. libuv needs to get updated to handle EUNATCH...
Initialize cppgc, create a CppHeap, and attach it to the Isolate. This allows C++ addons to start using cppgc to manage objects. Refs: https://github.com/nodejs/node/issues/40786
### What is the problem this feature will solve? `npm.cmd` fails on Windows in UNC (And WSL) paths, because cmd.exe doesn't support UNC paths as cwd: https://github.com/npm/cli/issues/6280 ### What is...
Fixes: https://github.com/nodejs/node/issues/45067
Closes: https://github.com/nodejs/node/issues/45402
Here's a first pass at implementing a foreign function interface (FFI). It's roughly based on [my attempt at building an FFI library in userland](https://github.com/bengl/sbffi). That implementation uses [`dyncall`](https://dyncall.org/), which doesn't...
### What is the problem this feature will solve? Currently, there seems no way to get all `net.Server` connections with the public API. `net.server.getConnections((err, count) => {...})` only returns the...