この記事を読むにはhttp://elegantcode.com/2011/04/06/taking-baby-steps-with-node-js-pumping-data-between-streams/、ストリームを理解するには少し問題があります。nodejsストリームとコールバック
引用:次のように
"Suppose we want to develop a simple web application that reads a particular file from disk and send it to the browser. The following code shows a very simple and naïve implementation in order to make this happen."
だから、コードサンプルは次のとおりです。
を:私たちは、単に行うことができたときに は、なぜ我々は上記の方法を使用します
fs.readFile(filePath, function(err, data){
response.write(data);
response.end();
});
ストリームを使用する時期または理由は何ですか?