James M Snell
James M Snell
After showing Bubbleprof to a few folks, I've received a few suggestions/feature requests: 1. Providing a smoothing option that would hide certain known Node.js core artifacts such short, always present...
Attempting to run the following in Node.js 13.11.0 ```js const { Worker, isMainThread, } = require('worker_threads'); if (isMainThread) { for (let n = 0; n < 100; n++) { new...
Just a heads up... the Node.js project is finalizing a proposal to establish a new nodejs/standards-positions repository that we will use to discuss and publish consensus positions on various proposed...
To support adding the stack property to DOMException, we used to create a dummy internal Error object when the the DOMException was created. This is wasteful and requires an additional...
This just stubs out the node:fs module with implementations that throw. The intent here is to allow imports/requires to work without actually implementing the fs module. Goal: Node.js compatibility, Frameworks
RM-17318 First step of the new module registry implementation (the jsg only bits). Expect several more follow up PRs. This PR provides the initial core of the new module registry...
Refs: https://developer.mozilla.org/en-US/docs/Web/API/reportError /cc @irvinebroque
SHIP-9206 ~~This is just a draft proposal at the moment, but it should be functional for folks who want to give it a try.~~ Had a couple of folks ask...