We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It's seems that if i use this package, Content-Length is never set and Transfer-Encoding is equal to chunked. Is it normal ?
Content-Length
Transfer-Encoding
chunked
My fix : setting the Content-Length juste before calling send
const data = JSON.parse(body); data.moreInfo = 'tada!'; .... res.set('Content-Length', Buffer.byteLength(JSON.stringify(data), 'utf-8')); send(JSON.stringify(data));
The text was updated successfully, but these errors were encountered:
Hi Johann, if there is something you'd like to PR we can consider the change, but we are not active in this project for the past years.
Sorry, something went wrong.
ok i will try to PR. thx
No branches or pull requests
It's seems that if i use this package,
Content-Length
is never set andTransfer-Encoding
is equal tochunked
.Is it normal ?
My fix : setting the Content-Length juste before calling send
The text was updated successfully, but these errors were encountered: