Skip to main content

Constants

Framework constants

Status

HTTP status enum. Can be used in place of "magic numbers" indicating response status:

res.status(Status.Ok).end()

is the equivalent of:

res.status(200).end()

To learn more about response status codes, see MDN documentation about HTTP status codes