-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't access request._body
in server.onrequest()
#15
Comments
@austinfrey Request body isn't (yet) supported, unfortunately. There will be a way to attach |
@iefserge that explains it :) thanks for the explanation 👍 |
@iefserge Is this something you'd accept a PR request for? If you point me in the right direction, I could work on it. |
@austinfrey yeah, that would be great! This is where incoming data chunks are pushed into the parser https://github.com/iefserge/eshttp/blob/master/lib/http-request.js#L131. |
I have a simple server and I need to access the
request._body
property. Unfortunately it always defaults to an empty string. The client does not have access to the response body either. My code snippets are below. Any help is appreciated.Thanks
my client looks like this.
The text was updated successfully, but these errors were encountered: