Reply
Reply
- Reply
- Introduction
- .code(statusCode)
- .statusCode
- .server
- .header(key, value)
- .headers(object)
- .getHeader(key)
- .getHeaders()
- .removeHeader(key)
- .hasHeader(key)
- .trailer(key, function)
- .hasTrailer(key)
- .removeTrailer(key)
- .redirect([code,] dest)
- .callNotFound()
- .getResponseTime()
- .type(contentType)
- .getSerializationFunction(schema | httpStatus)
- .compileSerializationSchema(schema, httpStatus)
- .serializeInput(data, [schema | httpStatus], [httpStatus])
- .serializer(func)
- .raw
- .sent
- .hijack()
- .send(data)
- .then(fulfilled, rejected)
Introduction
The second parameter of the handler function is Reply
. Reply is a core Fastify
object that exposes the following functions and properties:
.code(statusCode)
- Sets the status code..status(statusCode)
- An alias for.code(statusCode)
..statusCode
- Read and set the HTTP status code..server
- A reference to the fastify instance object..header(name, value)
- Sets a response header..headers(object)
- Sets all the keys of the object as response headers..getHeader(name)
- Retrieve value of already set header..getHeaders()
- Gets a shallow copy of all current response headers..removeHeader(key)
- Remove the value of a previously set header..hasHeader(name)
- Determine if a header has been set..trailer(key, function)
- Sets a response trailer..hasTrailer(key)
- Determine if a trailer has been set..removeTrailer(key)
- Remove the value of a previously set trailer..type(value)
- Sets the headerContent-Type
..redirect([code,] dest)
- Redirect to the specified url, the status code is optional (default to302
)..callNotFound()
- Invokes the custom not found handler..serialize(payload)
- Serializes the specified payload using the default JSON serializer or using the custom serializer (if one is set) and returns the serialized payload..getSerializationFunction(schema | httpStatus)
- Returns the serialization function for the specified schema or http status, if any of either are set..compileSerializationSchema(schema, httpStatus)
- Compiles the specified schema and returns a serialization function using the default (or customized)SerializerCompiler
. The optionalhttpStatus
is forwarded to theSerializerCompiler
if provided, default toundefined
..serializeInput(data, schema, [,httpStatus])
- Serializes the specified data using the specified schema and returns the serialized payload. If the optionalhttpStatus
is provided, the function will use the serializer function given for that HTTP Status Code. Default toundefined
..serializer(function)
- Sets a custom serializer for the payload..send(payload)
- Sends the payload to the user, could be a plain text, a buffer, JSON, stream, or an Error object..sent
- A boolean value that you can use if you need to know ifsend
has already been called..hijack()
- interrupt the normal request lifecycle..raw
- Thehttp.ServerResponse
from Node core..log
- The logger instance of the incoming request..request
- The incoming request..context
- Access the Request's context property.
fastify.get('/', options, function (request, reply) {
// Your code
reply
.code(200)
.header('Content-Type', 'application/json; charset=utf-8')
.send({ hello: 'world' })
})
Additionally, Reply
provides access to the context of the request:
fastify.get('/', {config: {foo: 'bar'}}, function (request, reply) {
reply.send('handler config.foo = ' + reply.context.config.foo)
})
.code(statusCode)
If not set via reply.code
, the resulting statusCode
will be 200
.
.statusCode
This property reads and sets the HTTP status code. It is an alias for
reply.code()
when used as a setter.
if (reply.statusCode >= 299) {
reply.statusCode = 500
}
.server
The Fastify server instance, scoped to the current encapsulation context.
fastify.decorate('util', function util () {
return 'foo'
})
fastify.get('/', async function (req, rep) {
return rep.server.util() // foo
})
.header(key, value)
Sets a response header. If the value is omitted or undefined, it is coerced to
''
.
Note: the header's value must be properly encoded using
encodeURI
or similar modules such asencodeurl
. Invalid characters will result in a 500TypeError
response.
For more information, see
http.ServerResponse#setHeader
.
-
set-cookie
- When sending different values as a cookie with
set-cookie
as the key, every value will be sent as a cookie instead of replacing the previous value.
reply.header('set-cookie', 'foo');
reply.header('set-cookie', 'bar');-
The browser will only consider the latest reference of a key for the
set-cookie
header. This is done to avoid parsing theset-cookie
header when added to a reply and speeds up the serialization of the reply. -
To reset the
set-cookie
header, you need to make an explicit call toreply.removeHeader('set-cookie')
, read more about.removeHeader(key)
here.
- When sending different values as a cookie with
.headers(object)
Sets all the keys of the object as response headers.
.header
will be called under the hood.
reply.headers({
'x-foo': 'foo',
'x-bar': 'bar'
})
.getHeader(key)
Retrieves the value of a previously set header.
reply.header('x-foo', 'foo') // setHeader: key, value
reply.getHeader('x-foo') // 'foo'
.getHeaders()
Gets a shallow copy of all current response headers, including those set via the
raw http.ServerResponse
. Note that headers set via Fastify take precedence
over those set via http.ServerResponse
.
reply.header('x-foo', 'foo')
reply.header('x-bar', 'bar')
reply.raw.setHeader('x-foo', 'foo2')
reply.getHeaders() // { 'x-foo': 'foo', 'x-bar': 'bar' }
.removeHeader(key)
Remove the value of a previously set header.
reply.header('x-foo', 'foo')
reply.removeHeader('x-foo')
reply.getHeader('x-foo') // undefined
.hasHeader(key)
Returns a boolean indicating if the specified header has been set.
.trailer(key, function)
Sets a response trailer. Trailer is usually used when you need a header that
requires heavy resources to be sent after the data
, for example,
Server-Timing
and Etag
. It can ensure the client receives the response data
as soon as possible.
Note: The header Transfer-Encoding: chunked
will be added once you use the
trailer. It is a hard requirement for using trailer in Node.js.
Note: Currently, the computation function only supports synchronous function.
That means async-await
and promise
are not supported.
reply.trailer('server-timing', function() {
return 'db;dur=53, app;dur=47.2'
})
const { createHash } = require('crypto')
// trailer function also recieve two argument
// @param {object} reply fastify reply
// @param {string|Buffer|null} payload payload that already sent, note that it will be null when stream is sent
reply.trailer('content-md5', function(reply, payload) {
const hash = createHash('md5')
hash.update(payload)
return hash.disgest('hex')
})
.hasTrailer(key)
Returns a boolean indicating if the specified trailer has been set.
.removeTrailer(key)
Remove the value of a previously set trailer.
reply.trailer('server-timing', function() {
return 'db;dur=53, app;dur=47.2'
})
reply.removeTrailer('server-timing')
reply.getTrailer('server-timing') // undefined
.redirect([code ,] dest)
Redirects a request to the specified URL, the status code is optional, default
to 302
(if status code is not already set by calling code
).
Note: the input URL must be properly encoded using
encodeURI
or similar modules such asencodeurl
. Invalid URLs will result in a 500TypeError
response.
Example (no reply.code()
call) sets status code to 302
and redirects to
/home
reply.redirect('/home')
Example (no reply.code()
call) sets status code to 303
and redirects to
/home
reply.redirect(303, '/home')
Example (reply.code()
call) sets status code to 303
and redirects to /home
reply.code(303).redirect('/home')
Example (reply.code()
call) sets status code to 302
and redirects to /home
reply.code(303).redirect(302, '/home')
.callNotFound()
Invokes the custom not found handler. Note that it will only call preHandler
hook specified in setNotFoundHandler
.
reply.callNotFound()
.getResponseTime()
Invokes the custom response time getter to calculate the amount of time passed since the request was started.
Note that unless this function is called in the onResponse
hook it will always return 0
.
const milliseconds = reply.getResponseTime()
.type(contentType)
Sets the content type for the response. This is a shortcut for
reply.header('Content-Type', 'the/type')
.
reply.type('text/html')
If the Content-Type
has a JSON subtype, and the charset parameter is not set,
utf-8
will be used as the charset by default.
.getSerializationFunction(schema | httpStatus)
By calling this function using a provided schema
or httpStatus
,
it will return a serialzation
function that can be used to
serialize diverse inputs. It returns undefined
if no
serialization function was found using either of the provided inputs.
This heavily depends of the schema#responses
attached to the route, or
the serialization functions compiled by using compileSerializationSchema
.
const serialize = reply
.getSerializationFunction({
type: 'object',
properties: {
foo: {
type: 'string'
}
}
})
serialize({ foo: 'bar' }) // '{"foo":"bar"}'
// or
const serialize = reply
.getSerializationFunction(200)
serialize({ foo: 'bar' }) // '{"foo":"bar"}'
See .compileSerializationSchema(schema, [httpStatus]) for more information on how to compile serialization schemas.