Back to Expressjs

Res HeadersSent

_includes/api/en/4x/res-headersSent.md

latest270 B
Original Source
<h3 id='res.headersSent'>res.headersSent</h3>

Boolean property that indicates if the app sent HTTP headers for the response.

js
app.get('/', function (req, res) {
  console.dir(res.headersSent) // false
  res.send('OK')
  console.dir(res.headersSent) // true
})