
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
better-fastify-405
Advanced tools
A simple and fully customizable Fastify plugin for handling 405 gracefully.
By default Fastify suppress error 405 and with return 404 instead. A 405 error would improve the development experience.
fastify-405 was built to solve this issue, but it requires you to input a RegExp for the route you want to handle 405.
This plugin is meant to read from your current route setting, and create routes that return 405 automatically.
npm add better-fastify-405
yarn add better-fastify-405
//app.js
import fastify, { FastifyRequest, FastifyReply, FastifyInstance, HookHandlerDoneFunction, RouteOptions } from 'fastify';
const app: FastifyInstance = fastify({
logger: true
})
//Other plugins
app.register(import("fastify-etag"))
app.register(import('plugins/better-fastify-405'), {
routes: [
//Required.
//Register all your route here, or else this plugin would not work.
import('./routes/index'),
import('./routes/protected')
//All the route will be registered inside the plugin. Do not use app.register() here.
],
filterCallback: ({ route, method }) => {
// Optional
// A callback to allow you filter out specific route and specific method from assigning it to 405
//Route: route registered
//Method: method available to apply 405
return true
}
})
OPTIONS route with 405A function allowCORS is provided to help you not mark OPTIONS for 405.
import better405, { allowCORS } from 'better-fastify-405'
import fastify, { FastifyRequest, FastifyReply, FastifyInstance, HookHandlerDoneFunction, RouteOptions } from 'fastify';
const app: FastifyInstance = fastify({
logger: true
})
//Other plugins
app.register(import("fastify-etag"))
app.register(better405, {
routes: [
import('./routes/index'),
import('./routes/protected')
],
filterCallback: allowCORS
})
FAQs
A better plugin for handling 405 in Fastify
We found that better-fastify-405 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.