Protected
loggerReadonly
resSends a JSON response.
The value to encode as JSON.
res.json({ status: "OK" });
Sends a plain text response.
The data to send.
res.send("Hello World!");
Sets a header value.
The header key.
The header value.
res.setHeader("X-My-Header", "My Value");
Sets the HTTP status code.
The HTTP status code.
res.status(HttpStatus.OK);
Generated using TypeDoc
A class representing an HTTP response, extending the functionality of HttpResponse.