node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
### Version `v23.0.0-pre` ### Platform `Linux cef57c85a6b6 6.8.9-arch1-2 #1 SMP PREEMPT_DYNAMIC Tue, 07 May 2024 21:35:54 +0000 x86_64 GNU/Linux` ### Subsystem `http` ### What steps will reproduce the bug? 0....
This PR updates the error message for unrecognized types to include a link to the file that contains a list of valid types
### What is the problem this feature will solve? Some npm scripts delegate to another task runner (like [Wireit](https://github.com/google/wireit)) and require the environment variable `npm_lifecycle_event` to be set in order...
### Version Tested on v21.2.0, v20.9.0, v18.18.2 ### Platform Microsoft Windows NT 10.0.19045.0 x64 ### Subsystem _No response_ ### What steps will reproduce the bug? 1. run `fetch("http://test.localhost/")` ### How...
This is a step forward to move all `node:fs` implementation to C++. Since we now have support for `win32.pathResolve()` in C++, we can move forward with moving `ToNamespacedPath` functions to...
This is finally possible in C++20 without having to rely on compiler-defined macros, assuming none of our supported platforms are mixed-endian. Refs: https://github.com/nodejs/node/pull/44411
#### deps: V8: cherry-pick b639938e99fa Original commit message: [snapshot] support context embedder data serialization Previously all context embedder data are serialized verbatim, so if a context embedder data slot contains...
`std::format("hello {}", "world")` is not available before 13.3, and we support 11. Is there any reason not to update minimum macOS version in the next major? - macOS 11 release...
Noticed in some benchmarking/profiling that the Navigator object constructor was rather expensive and slow due to initialization of properties during construction. It makes more sense for these to be lazily...
This pull request introduces recursion to the test runner. Previous attempts were unsuccessful due to issues in certain directories that did not handle recursion correctly. This PR specifically enables recursion...