fastify-helmet
Important security headers for Fastify. It is a tiny wrapper around
helmet.
Install
npm i fastify-helmet
Usage
Simply require this plugin, and the basic security headers will be set.
const fastify = require('fastify')()
const helmet = require('fastify-helmet')
fastify.register(
helmet,
{ contentSecurityPolicy: false }
)
fastify.listen(3000, err => {
if (err) throw err
})
How it works
fastify-helmet
is just a tiny wrapper around helmet that adds an 'onRequest'
hook.
It accepts the same options of Helmet, and you can see more in the helmet documentation.
License
MIT