Created
October 11, 2012 08:36
-
-
Save kadishmal/3871017 to your computer and use it in GitHub Desktop.
Simple Node.js server which responds in chunked transfer encoding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http'); | |
http.createServer(function (request, response) { | |
response.setHeader('Content-Type', 'text/html; charset=UTF-8'); | |
response.setHeader('Transfer-Encoding', 'chunked'); | |
var html = | |
'<!DOCTYPE html>' + | |
'<html lang="en">' + | |
'<head>' + | |
'<meta charset="utf-8">' + | |
'<title>Chunked transfer encoding test</title>' + | |
'</head>' + | |
'<body>'; | |
response.write(html); | |
html = '<h1>Chunked transfer encoding test</h1>' | |
response.write(html); | |
// Now imitate a long request which lasts 5 seconds. | |
setTimeout(function(){ | |
html = '<h5>This is a chunked response after 5 seconds. The server should not close the stream before all chunks are sent to a client.</h5>' | |
response.write(html); | |
// since this is the last chunk, close the stream. | |
html = | |
'</body>' + | |
'</html'; | |
response.end(html); | |
}, 5000); | |
// this is another chunk of data sent to a client after 2 seconds before the | |
// 5-second chunk is sent. | |
setTimeout(function(){ | |
html = '<h5>This is a chunked response after 2 seconds. Should be displayed before 5-second chunk arrives.</h5>' | |
response.write(html); | |
}, 2000); | |
}).listen(process.env.VMC_APP_PORT || 1337, null); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@amn
Node.js IS encoding the chunked transfer, thats the whole point of the internal
http
module. If you set the header toTransfer-Encoding: chunked
then thehttp
outgoing handler checks for it and applies the proper hexadecimal length and new line terminators for each write.I even went to go find you exactly where it's doing it in the Node.ja offficial repository:
https://github.com/nodejs/node/blob/master/lib/_http_outgoing.js#L642-L728