James M Snell

Results 138 issues of 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...

enhancement

### 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...

addition/proposal
needs implementer interest

workerd PR: https://github.com/cloudflare/workerd/pull/1706

product:workers
size/s

### 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...

addition/proposal

### 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...

addition/proposal
topic: aborting

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...