📅  最后修改于: 2022-03-11 15:04:13.936000             🧑  作者: Mango
(req, res) => res.send('Hello World!')
//Use end() to send an empty response
res.end()
res.status(404).end()// for not found pages
//use either
//res.status(404).send('File not found') === res.sendStatus(404)