HTTP
ふとchunkedの挙動が気になったので調べたメモ。nodeのhttpはデフォルトでTransfer-Encoding: chunkedになってる。 require('http').createServer(function(req, res) { res.writeHead(200, {'content-type': 'text/html' }); res.write('<style>body{background:re</style>…
ふとchunkedの挙動が気になったので調べたメモ。nodeのhttpはデフォルトでTransfer-Encoding: chunkedになってる。 require('http').createServer(function(req, res) { res.writeHead(200, {'content-type': 'text/html' }); res.write('<style>body{background:re</style>…