You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should allow multiple http frameworks, based on a middleware approach.
We should create a bare-bone http framework option for handlers. Instead of doing everything that the current one does, it would only read the headers, url, body (as bytes) from ASP.net.
The option for which middleware to choose would be made in the HTTP handler spec.
From there, we could provide many middleware functions that parse json, dynamically parse the body based on content-type, support CORS, handle compression, and everything else that our middleware does.
The text was updated successfully, but these errors were encountered:
We should allow multiple http frameworks, based on a middleware approach.
We should create a bare-bone http framework option for handlers. Instead of doing everything that the current one does, it would only read the headers, url, body (as bytes) from ASP.net.
The option for which middleware to choose would be made in the HTTP handler spec.
From there, we could provide many middleware functions that parse json, dynamically parse the body based on content-type, support CORS, handle compression, and everything else that our middleware does.
The text was updated successfully, but these errors were encountered: