Ignacio El Kadre
Ignacio El Kadre
Simple library framework agnostic to convert Swoole Request to Psr7 Request and Psr7 Response into Swoole Response.
Hi ! I've used your code with requirejs, so I've added UMD support. Thank you.
Addresses #23 by allowing to set a threshold (`autoChunkSize`) where the merge would call write repeteadly instead a single call. This can be used to prevent hitting the `output_buffer_size` limit.
Currently if you want to send a response bigger than `output_buffer_size` you'll get the error: ``` WARNING ProcessFactory::finish() (ERRNO 1203): The length of data [2645957] exceeds the output buffer size[2097152],...
Currently, if you post a json like this: ```bash curl -X POST -H Content-Type:application/json localhost:9501 --data '{"field":"value"}' ``` the `getParsedBody` method does not do anything. The reason behind this is...