node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
Adds test case for inspector's method `Debugger.setInstrumentationBreakpoint` with `beforeScriptExecution` param. ##### Checklist - [x] `make -j4 test` (UNIX), or `vcbuild test` (Windows) passes - [x] tests and/or benchmarks are included...
This is just a minor refactoring to reduce the code overhead. ##### Checklist - [x] `make -j4 test` (UNIX), or `vcbuild test` (Windows) passes - [x] tests and/or benchmarks are...
Distinguish between a `host` and `hostname` in the `Server.prototype.listen` argument, to better align with how browsers and other places in node distinguish between `host` and `hostname`. For more context, see...
##### Checklist - [X] `make -j4 test` (UNIX), or `vcbuild test` (Windows) passes - [ ] commit message follows [commit guidelines](https://github.com/nodejs/node/blob/master/doc/guides/contributing/pull-requests.md#commit-message-guidelines) This conforms to posix saying that `sigset_t` cannot be...
Fixes: https://github.com/nodejs/node/issues/27534 This is an alternative to https://github.com/nodejs/node/pull/27644 that avoids any performance regressions in cases where lowercased versions of paths do not differ in length to the original. The only...
Modify the NativeModule class to use compileFunction instead of manually wrapping the string source code and then compiling it. ##### Checklist - [x] `make -j4 test` (UNIX), or `vcbuild test`...
##### Checklist - [x] `make -j4 test` (UNIX), or `vcbuild test` (Windows) passes - [x] tests and/or benchmarks are included - [x] documentation is changed or added - [x] commit...
src: quic
Updated alternatiive to #38233 ... Significant changes here. This focuses entirely on the internal API surface and does not expose any public API yet. That is intentional to allow us...