Small package intended to use zod to make express request type-safe.
Just install with your favorite package manager:
npm i zod-express-guard
Zod, Express and @types/express are peer dependencies, so you can change versions without having to wait for me to update this library. Newer versions of npm resolve these by default, but you can do it manually like this:
npm i -D @types/express && npm i express zod
This library exposes four validation functions, and three of them are shortcuts that end up calling the first one.
All functions support async middlewares and will catch async errors.
This is the main function. It receives an object with the Zod schemas for what you want to validate,
together with the middleware you want to guard. If validation passes, your middleware will be called
with type-safe req
properties. If validation fails, next
will be called containg and instance of
ZodError
Example:
// routes/login.ts
import z from 'zod'
import { validate } from 'zod-express-guard'
export default validate(
{
body: z.object({
login: z.string().nonempty(),
password: z.string().nonempty()
})
},
(req, res) => {
// req.body has the type { login: string, password: string }
// req.query and req.params have type unknown, since they were not validated
res.status(200).json({ message: 'Validation passed' })
}
)
You can pass up to three properties to the first parameter: body
, query
and params
, each one
validates its respective property inside req
These three functions serve as shortcuts when you only want to validate a single property inside
req
. This is useful for our login middleware in the previous example:
// routes/login.ts
import z from 'zod'
import { validateBody } from 'zod-express-guard'
export default validateBody(
z.object({
login: z.string().nonempty(),
password: z.string().nonempty()
}),
(req, res) => {
// req.body has the type { login: string, password: string }
// req.query and req.params have type unknown, since they were not validated
res.status(200).json({ message: 'Validation passed' })
}
)
validateQuery
and validateParams
work similarly, but for req.query
and req.params
,
respectively.
Note that, when using a shortcut function, only one of the three properties will be validated and
made acessible, and the other two will have type unknown
Clone this and run npm install
on the root.
Please make sure you modify the tests to reflect any changes you add.
Use npx gitmoji -c
to commit, and follow existing commit patterns
Simply run npm test
after running npm install
.
The package.json
already specifies a pretest
script that will run a clean build before testing.