Node Express Content-Length
The response has Transfer-Encoding: chunked. Here Content-Length is not applicable, because the content is sent in one or more parts (chunks) inside the response body, with a marker indicating the byte-length of each individual chunk. http://en.wikipedia.org/wiki/Chunked_transfer_encoding Node.js defaults to Transfer-Encoding: chunked. However, this is disabled by setting the Content-Length header on the native http response … Read more