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...
### What problem are you trying to solve? Early hints (103 responses) are not the only kind of interim response the http spec allows for. It would be ideal for...
workerd PR: https://github.com/cloudflare/workerd/pull/1706
### What is the issue with the URL Standard? The spec specifically calls out validity errors while parsing and recommends that implementations report those in some way. The URL API...
### What is the issue with the DOM Standard? The `AbortSignal.timeout(...)` method provided us with a nice functional mechanism to abort an operation after a given period of time and...
While we are starting to see an expansion of Promise-based APIs that directly support cancelation using an AbortSignal, there are still a good number out there that do not. One...
This repository would serve much the same purpose as Mozilla's standards positions repository seen here: https://github.com/mozilla/standards-positions ... that is, it would effectively serve as the repository for the Node.js project's...
Allows attaching arbitrary, serializable application detail to an exception. ``` struct Detail { static constexpr uint64_t EXCEPTION_DETAIL_TYPE_ID = 1; kj::Maybe trySerializeForKjException() const { return kj::heapArray(...); } static kj::Maybe tryDeserializeForKjException(kj::ArrayPtr data)...
Initial version to request feedback.
There are a range of cases where Copy-on-write semantics would be helpful and could help performance (e.g. avoiding copies on iterators, for instance, when iterating over a set of headers...