Reply
Reply
- Reply
- Introduction
- .code(statusCode)
- .elapsedTime
- .statusCode
- .server
- .header(key, value)
- .headers(object)
- .getHeader(key)
- .getHeaders()
- .removeHeader(key)
- .hasHeader(key)
- .writeEarlyHints(hints, callback)
- .trailer(key, function)
- .hasTrailer(key)
- .removeTrailer(key)
- .redirect(dest, [code ,])
- .callNotFound()
- .type(contentType)
- .getSerializationFunction(schema | httpStatus, [contentType])
- .compileSerializationSchema(schema, [httpStatus], [contentType])
- .serializeInput(data, [schema | httpStatus], [httpStatus], [contentType])
- .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..elapsedTime
- Returns the amount of time passed since the request was received by Fastify..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..writeEarlyHints(hints, callback)
- Sends early hints to the user while the response is being prepared..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(dest, [code,])
- Redirect to the specified URL, the status code is optional (defaults 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, [contentType])
- Returns the serialization function for the specified schema or http status, if any of either are set..compileSerializationSchema(schema, [httpStatus], [contentType])
- 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], [contentType])
- Serializes the specified data using the specified schema and returns the serialized payload. If the optionalhttpStatus
, andcontentType
are provided, the function will use the serializer function given for that specific content type and 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.
fastify.get('/', options, function (request, reply) {
// Your code
reply
.code(200)
.header('Content-Type', 'application/json; charset=utf-8')
.send({ hello: 'world' })
})
.code(statusCode)
If not set via reply.code
, the resulting statusCode
will be 200
.
.elapsedTime
Invokes the custom response time getter to calculate the amount of time passed since the request was received by Fastify.
const milliseconds = reply.elapsedTime
.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.
.writeEarlyHints(hints, callback)
Sends early hints to the client. Early hints allow the client to start processing resources before the final response is sent. This can improve performance by allowing the client to preload or preconnect to resources while the server is still generating the response.
The hints parameter is an object containing the early hint key-value pairs.
Example:
reply.writeEarlyHints({
Link: '</styles.css>; rel=preload; as=style'
});
The optional callback parameter is a function that will be called once the hint is sent or if an error occurs.
.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: Any error passed to done
callback will be ignored. If you interested
in the error, you can turn on debug
level logging.
reply.trailer('server-timing', function() {
return 'db;dur=53, app;dur=47.2'
})
const { createHash } = require('node:crypto')
// trailer function also receive 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
// @param {function} done callback to set trailer value
reply.trailer('content-md5', function(reply, payload, done) {
const hash = createHash('md5')
hash.update(payload)
done(null, hash.disgest('hex'))
})
// when you prefer async-await
reply.trailer('content-md5', async 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(dest, [code ,])
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('/home', 303)
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('/home', 302)
.callNotFound()
Invokes the custom not found handler. Note that it will only call preHandler
hook specified in setNotFoundHandler
.
reply.callNotFound()
.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, [contentType])
By calling this function using a provided schema
or httpStatus
,
and the optional contentType
, 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"}'
// or
const serialize = reply
.getSerializationFunction(200, 'application/json')
serialize({ foo: 'bar' }) // '{"foo":"bar"}'
See .compileSerializationSchema(schema, [httpStatus], [contentType]) for more information on how to compile serialization schemas.
.compileSerializationSchema(schema, [httpStatus], [contentType])
This function will compile a serialization schema and
return a function that can be used to serialize data.
The function returned (a.k.a. serialization function) returned is compiled
by using the provided SerializerCompiler
. Also this is cached by using
a WeakMap
for reducing compilation calls.
The optional parameters httpStatus
and contentType
, if provided,
are forwarded directly to the SerializerCompiler
, so it can be used
to compile the serialization function if a custom SerializerCompiler
is used.
This heavily depends of the schema#responses
attached to the route, or
the serialization functions compiled by using compileSerializationSchema
.
const serialize = reply
.compileSerializationSchema({
type: 'object',
properties: {
foo: {
type: 'string'
}
}
})
serialize({ foo: 'bar' }) // '{"foo":"bar"}'
// or
const serialize = reply
.compileSerializationSchema({
type: 'object',
properties: {
foo: {
type: 'string'
}
}
}, 200)
serialize({ foo: 'bar' }) // '{"foo":"bar"}'
// or
const serialize = reply
.compileSerializationSchema({
'3xx': {
content: {
'application/json': {
schema: {
name: { type: 'string' },
phone: { type: 'number' }
}
}
}
}
}, '3xx', 'application/json')
serialize({ name: 'Jone', phone: 201090909090 }) // '{"name":"Jone", "phone":201090909090}'
Note that you should be careful when using this function, as it will cache the compiled serialization functions based on the schema provided. If the schemas provided is mutated or changed, the serialization functions will not detect that the schema has been altered and for instance it will reuse the previously compiled serialization function based on the reference of the schema previously provided.
If there's a need to change the properties of a schema, always opt to create a totally new object, otherwise the implementation won't benefit from the cache mechanism.
:Using the following schema as example:
const schema1 = {
type: 'object',
properties: {
foo: {
type: 'string'
}
}
}
Not
const serialize = reply.compileSerializationSchema(schema1)
// Later on...
schema1.properties.foo.type. = 'integer'
const newSerialize = reply.compileSerializationSchema(schema1)
console.log(newSerialize === serialize) // true
Instead
const serialize = reply.compileSerializationSchema(schema1)
// Later on...
const newSchema = Object.assign({}, schema1)
newSchema.properties.foo.type = 'integer'
const newSerialize = reply.compileSerializationSchema(newSchema)
console.log(newSerialize === serialize) // false
.serializeInput(data, [schema | httpStatus], [httpStatus], [contentType])
This function will serialize the input data based on the provided schema
or HTTP status code. If both are provided the httpStatus
will take precedence.
If there is not a serialization function for a given schema
a new serialization
function will be compiled, forwarding the httpStatus
and contentType
if provided.
reply
.serializeInput({ foo: 'bar'}, {
type: 'object',
properties: {
foo: {
type: 'string'
}
}
}) // '{"foo":"bar"}'
// or
reply
.serializeInput({ foo: 'bar'}, {
type: 'object',
properties: {
foo: {
type: 'string'
}
}
}, 200) // '{"foo":"bar"}'
// or
reply
.serializeInput({ foo: 'bar'}, 200) // '{"foo":"bar"}'
// or
reply
.serializeInput({ name: 'Jone', age: 18 }, '200', 'application/vnd.v1+json') // '{"name": "Jone", "age": 18}'
See .compileSerializationSchema(schema, [httpStatus], [contentType]) for more information on how to compile serialization schemas.
.serializer(func)
By default, .send()
will JSON-serialize any value that is not one of Buffer
,
stream
, string
, undefined
, or Error
. If you need to replace the default
serializer with a custom serializer for a particular request, you can do so with
the .serializer()
utility. Be aware that if you are using a custom serializer,
you must set a custom 'Content-Type'
header.
reply
.header('Content-Type', 'application/x-protobuf')
.serializer(protoBuf.serialize)
Note that you don't need to use this utility inside a handler
because Buffers,
streams, and strings (unless a serializer is set) are considered to already be
serialized.
reply
.header('Content-Type', 'application/x-protobuf')
.send(protoBuf.serialize(data))
See .send()
for more information on sending different types of
values.