I am new to Node.js
what is the use of req.end
in Node.js .I use that but ,it print two times
app.use('/',function(req,res){
res.send("hello world"); //send to browser
console.log("by"); //print in console
req.end; //req is end here
}).listen(3000);