Because the file should be generated dynamically, maybe I should use the fs modules\'s writeStream. But I couldn\'t find any example codes with my poor googling. Sorry.
app.get('/down2', function(req, res){
var filename = 'data.csv';
res.attachment(filename);
res.end('hello,world\nkeesun,hi', 'UTF-8'); //Actually, the data will be loaded form db.
});