bodyparser
bodyparser copied to clipboard
Koa body parsing middleware
The current readme indicates this library supports XML for types, limits and extending but in fact does not. This also contradicts with the typescript definitions from @types/koa-bodyparser.
I found a problem that when `bodyParser` middleware is used, the return value from following handlers cannot pass through it. So I fix `bodyParser` function to return the value from...
This seems to be the official stance of the Koa community
Hi, The minimal node.js version which is supported by koa right now is 12, for this reason, I think that this package should also be updated, I have prepared it...
Why is this the default example in every case to just blindly reassign the body back to body and send it back instead of having even one single example of...
please add a new body format, content-type:application/push body format: a=123,b=456
@dead-horse I would be keen to rewrite this library to TypeScript. Would you be interested?
co-busboy has poor ergonomics for koa use and requires a stack of app level dependencies to handle multipart forms. Meanwhile, the formidable based, streaming, first party koajs/koa-body exists... https://github.com/koajs/koa-body Sandbox:...
Why is this library not self typed. Now the type definition somewhere else is like: ``` declare module 'koa' { interface Request { body: string | Record; rawBody: string; }...
co (generator function and yield) syntax is mandatory with co-busboy. It is not user-friendly. Maybe it is not suggested in the README.