node
node copied to clipboard
Node.js JavaScript runtime ✨🐢🚀✨
### Version v18.8.0 ### Platform Darwin Tims-MacBook-Pro.local 21.6.0 Darwin Kernel Version 21.6.0: Wed Aug 10 14:28:23 PDT 2022; root:xnu-8020.141.5~2/RELEASE_ARM64_T6000 arm64 ### Subsystem ECMAScript modules ### What steps will reproduce the...
Prior to this change `sourceMappingURL` in string where being matched by the RegExp which caused sourcemaps not be loaded when using the `--enable-source-maps` flag. This commit changes the RegExp to...
**Is your feature request related to a problem? Please describe.** Right now there isn't a documented/stable way to use Node as a shared library inside of an application. Were one...
Refs: https://github.com/nodejs/node/issues/44000 - add infra to support externally shared js builtins in support of distos that want to externalize deps that include JS/WASM instead of native code - add support...
### Version v18.4.0 ### Platform Darwin MBK-WCV41P7JVM 21.2.0 Darwin Kernel Version 21.2.0: Sun Nov 28 20:28:41 PST 2021; root:xnu-8019.61.5~1/RELEASE_ARM64_T6000 arm64 ### Subsystem _No response_ ### What steps will reproduce the...
Refs https://nodejs.org/api/deprecations.html#DEP0009, #11305, #31166. ``` > crypto.pbkdf2('f', 'f', 1, 20, null, console.log) Uncaught: TypeError [ERR_INVALID_ARG_TYPE]: The "digest" argument must be of type string. Received null at __node_internal_captureLargerStackTrace (node:internal/errors:477:5) at new...
openssl/provider.h header is not part of OpenSSL 1.1.1 so do not include it when building with an older instance. Fixes: https://github.com/nodejs/node/issues/44722
Modified by Priya R. Shastri
Static analysis insists that `sysconf(_SC_PAGE_SIZE)` might return a negative integer (even though it never will). This was supposed to be handled by the existing check `EXPECT_GE(page, static_cast(N))`. I assume that...