Node.js は初めてです。これら 2 つのコードの違いを知りたい:
var http = require("http");
http.createServer(function(request,response) {
request.addListener("end", function(){
console.log(request);
});
}).listen(8888);
と
var http = require("http");
http.createServer(function(request,response) {
console.log(request);
}).listen(8888);
つまり、end
サーバーがデータの受信を終了するたびにイベントがトリガーされるのに、わざわざそれを使用する必要はありません。初心者の質問です。