Blake Embrey
Blake Embrey
Detecting scripts and other types based on the request headers. Maybe also RSS feed support?
Looking at https://raw.githubusercontent.com/strongloop/loopback-swagger/master/example/specs/1.2/pet-store.json, we would need to resolve each of the API endpoints but they are stored at `pet.json` instead of just `pet`. The simplest fix would be to try...
Validate responses match the RAML schemas for methods. - Status code - Response body - Response headers
https://github.com/mulesoft-labs/osprey-method-handler/blob/master/osprey-method-handler.js#L180
Exact Types
This is a proposal to enable a syntax for exact types. A similar feature can be seen in Flow (https://flowtype.org/docs/objects.html#exact-object-types), but I would like to propose it as a feature...
New explicit error from `path-to-regexp` to close https://github.com/expressjs/express/issues/5955.
Using a loop here would improve performance for parsing over splitting into an array and iterating over it, then splitting some more. If we prefer the overall split on `;`...
Another RFC (cc @gurgunday). This would resolve #60, but is a larger breaking change. There is a perf improvement that kicks in when you have a couple of cookies: After:...
Closes https://github.com/pillarjs/finalhandler/issues/60#issuecomment-2341323316. It already escapes the HTML which should be good enough for visualizing, I'm not sure there's much value in also encoding it since that makes it not match...
For the next major I think we should consider removing the autogenerated methods from here: https://github.com/pillarjs/router/blob/36ae18fdf81e3d4ee1c366d833d3a037b335a49d/index.js#L436-L443. We can provide the main ones statically, and instead rely on a new `router.method("METHOD",...