node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
With this pull request, `node -w` also will be activate watch mode alongside `node --watch`.
Hi Node TSCers, I recently started a [CLI API WinterCG proposal](https://github.com/CanadaHonk/proposal-cli-api). This proposes to add a common API between runtimes for CLI functionality, most notably arguments and environment variables (plus...
Not sure what the semverness of this would be, hopefully we can backport it to v18.x if https://github.com/nodejs/node/pull/51136 can land there. Here's what the warning looks like: ```console $ ./node...
* **Version**: v14.9.0 * **Platform**: NixOS 21.03, Linux 5.8.11 x86_64 * **Subsystem**: `ResetStdio` in `src/node.cc` In Bash, run the following: ```bash node -e 'setTimeout(() => {}, 2000)' & sleep 1...
This is an automated update of simdutf to 4.0.9.
Fixes calling `clearTimeout` in a mocked `setTimeout` callback resulting in two timeouts being removed from the execution queue (the current timeout and the next one in the queue). This happens...
The webpage at the URL referenced by `node --inspect` was retitled when it was recently moved. Update the test to match the new title "Debugging Node.js" (formerly "Debugging Guide"). Refs:...
Node.js used regex to extract sourceMappingURL from the source code of ESM files. This method led to inaccuracies, notably the erroneous extraction of url from strings. This change attempts to...
As reported [here](https://github.com/nodejs/node/issues/50753), there is a problem loading modules from long paths on Windows. This change fixes it by adding the required `\\?\` prefix, with which, resolving long paths will...