node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
* **Version**: v14.12.0 * **Platform**: Linux jillian 5.8.10-arch1-1 #1 SMP PREEMPT Thu, 17 Sep 2020 18:01:06 +0000 x86_64 GNU/Linux ### What steps will reproduce the bug? This occurred while sitting...
### Test `test-buffer-tostring-rangeerror` ### Platform Linux x64 ### Console output ```console not ok 1244 parallel/test-buffer-tostring-rangeerror --- duration_ms: 120073.76400 severity: fail exitcode: -15 stack: |- timeout (node:2934155) [DEP0005] DeprecationWarning: Buffer() is...
The snapshot reproducibility test has been failing in dynamically linked builds since yesterday. From CI history it was still green at cd8e61fe2630906fc53de6ff9b98ef8355533785 (https://ci.nodejs.org/job/node-test-commit-linux-containered/44116/), but started failing no later than 4c730aed7f825af1691740663d599e9de5958f89...
This PR is a simplified version of https://github.com/nodejs/node/pull/48142 With this function, I also plan to replace all the references of `isTraceCategoryEnabled`. I made this function generic also to support cases...
Closes #50489 As the reference to build and test, I used the following files: - https://github.com/nodejs/build/blob/main/jenkins/scripts/windows/ci-run.cmd - https://github.com/nodejs/build/blob/main/jenkins/scripts/windows/node-test-binary-windows-js-suites.cmd - https://github.com/nodejs/build/blob/main/jenkins/scripts/windows/node-test-binary-windows-native-suites.cmd - https://ci.nodejs.org/job/node-test-commit-windows-fanned/configure - https://ci.nodejs.org/job/node-test-binary-windows-js-suites/configure - https://ci.nodejs.org/job/node-test-binary-windows-native-suites/nodes=win11-vs2022-arm64-COMPILED_BY-vs2022-arm64/20185/consoleFull - https://ci.nodejs.org/job/node-test-binary-windows-js-suites/RUN_SUBSET=0,nodes=win2016-COMPILED_BY-vs2022-x86/24289/console
V8 does not allow returning arbitrary values from the interceptor setter callbacks, only a boolean return value is allowed. Since default return value is `true`, it's not even necessary to...
Simplifies code by using `std::filesystem`. Since std::filesystem is C++17, this pull-request can be backported to 18 and 20. The following benchmark shows 2% improvement, but I'm sure if we had...
### What is the problem this feature will solve? The new experimental watch feature is awesome, but sometimes apps depend on non-imported files or data. For example, if your app...
### Version v17.2.0 ### Platform _No response_ ### Subsystem worker_threads ### What steps will reproduce the bug? Consider this `test.js` file: ```js const { isMainThread, Worker } = require("worker_threads"); if...
Meaning if you have this in your `.env` file: ```dotenv FOO= "BAR" ``` This command: ```bash node --env-file=.env -e 'console.log({ FOO: process.env.FOO })' ``` Will print this: ```JavaScript { FOO:...