
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
@fastify/cors
Advanced tools
@fastify/cors is a Fastify plugin that enables Cross-Origin Resource Sharing (CORS) for your Fastify application. It allows you to configure how your server handles cross-origin requests, which is essential for enabling web applications to interact with resources from different origins.
Enable CORS with default settings
This code demonstrates how to enable CORS with the default settings in a Fastify application. By registering the @fastify/cors plugin without any options, it allows all cross-origin requests.
const fastify = require('fastify')();
const cors = require('@fastify/cors');
fastify.register(cors);
fastify.get('/', (request, reply) => {
reply.send({ hello: 'world' });
});
fastify.listen(3000, err => {
if (err) throw err;
console.log('Server listening on http://localhost:3000');
});
Enable CORS with specific origin
This code demonstrates how to enable CORS for a specific origin. By passing an options object with the 'origin' property set to 'https://example.com', only requests from this origin will be allowed.
const fastify = require('fastify')();
const cors = require('@fastify/cors');
fastify.register(cors, { origin: 'https://example.com' });
fastify.get('/', (request, reply) => {
reply.send({ hello: 'world' });
});
fastify.listen(3000, err => {
if (err) throw err;
console.log('Server listening on http://localhost:3000');
});
Enable CORS with multiple origins
This code demonstrates how to enable CORS for multiple origins. By passing an array of origins to the 'origin' property, requests from any of these origins will be allowed.
const fastify = require('fastify')();
const cors = require('@fastify/cors');
fastify.register(cors, { origin: ['https://example.com', 'https://another-example.com'] });
fastify.get('/', (request, reply) => {
reply.send({ hello: 'world' });
});
fastify.listen(3000, err => {
if (err) throw err;
console.log('Server listening on http://localhost:3000');
});
Enable CORS with custom headers
This code demonstrates how to enable CORS with custom headers. By passing an options object with the 'allowedHeaders' property, you can specify which headers are allowed in cross-origin requests.
const fastify = require('fastify')();
const cors = require('@fastify/cors');
fastify.register(cors, { allowedHeaders: ['Content-Type', 'Authorization'] });
fastify.get('/', (request, reply) => {
reply.send({ hello: 'world' });
});
fastify.listen(3000, err => {
if (err) throw err;
console.log('Server listening on http://localhost:3000');
});
The 'cors' package is a popular middleware for enabling CORS in Express.js applications. It provides similar functionality to @fastify/cors but is designed for use with Express.js rather than Fastify. It allows you to configure CORS settings such as allowed origins, methods, and headers.
The 'koa2-cors' package is a middleware for enabling CORS in Koa.js applications. Like @fastify/cors, it allows you to configure CORS settings, but it is specifically designed for Koa.js. It supports various options for controlling how cross-origin requests are handled.
The 'hapi-cors' package is a plugin for enabling CORS in Hapi.js applications. It provides similar functionality to @fastify/cors but is tailored for the Hapi.js framework. It allows you to configure CORS settings such as allowed origins, methods, and headers.
@fastify/cors
enables the use of CORS in a Fastify application.
npm i @fastify/cors
Plugin version | Fastify version |
---|---|
^10.x | ^5.x |
^8.x | ^4.x |
^7.x | ^3.x |
^3.x | ^2.x |
^1.x | ^1.x |
Please note that if a Fastify version is out of support, then so are the corresponding versions of this plugin in the table above. See Fastify's LTS policy for more details.
Require @fastify/cors
and register it as any other plugin. It adds an onRequest
hook and a wildcard options route.
import Fastify from 'fastify'
import cors from '@fastify/cors'
const fastify = Fastify()
await fastify.register(cors, {
// put your options here
})
fastify.get('/', (req, reply) => {
reply.send({ hello: 'world' })
})
await fastify.listen({ port: 3000 })
You can use it as is without passing any option or you can configure it as explained below.
origin
: Configures the Access-Control-Allow-Origin CORS header. The value of origin can be:
Boolean
: Set to true
to reflect the request origin, or false
to disable CORS.String
: Set to a specific origin (e.g., "http://example.com"
). The special *
value (default) allows any origin.RegExp
: Set to a regular expression pattern to test the request origin. If it matches, the request origin is reflected (e.g., /example\.com$/
returns the origin only if it ends with example.com
).Array
: Set to an array of valid origins, each being a String
or RegExp
(e.g., ["http://example1.com", /\.example2\.com$/]
).Function
: Set to a function with custom logic. The function takes the request origin as the first parameter and a callback as the second (signature err [Error | null], origin
). Async-await and promises are supported. The Fastify instance is bound to the function call and can be accessed via this
. For example:origin: (origin, cb) => {
const hostname = new URL(origin).hostname
if(hostname === "localhost"){
// Request from localhost will pass
cb(null, true)
return
}
// Generate an error on other origins, disabling access
cb(new Error("Not allowed"), false)
}
methods
: Configures the Access-Control-Allow-Methods CORS header. Expects a comma-delimited string (e.g., 'GET,HEAD,POST') or an array (e.g., ['GET', 'HEAD', 'POST']
). Default: CORS-safelisted methods GET,HEAD,POST
.hook
: See Custom Fastify hook name. Default: onRequest
.allowedHeaders
: Configures the Access-Control-Allow-Headers CORS header. Expects a comma-delimited string (e.g., 'Content-Type,Authorization'
) or an array (e.g., ['Content-Type', 'Authorization']
). Defaults to reflecting the headers specified in the request's Access-Control-Request-Headers header if not specified.exposedHeaders
: Configures the Access-Control-Expose-Headers CORS header. Expects a comma-delimited string (e.g., 'Content-Range,X-Content-Range'
) or an array (e.g., ['Content-Range', 'X-Content-Range']
). No custom headers are exposed if not specified.credentials
: Configures the Access-Control-Allow-Credentials CORS header. Set to true
to pass the header; otherwise, it is omitted.maxAge
: Configures the Access-Control-Max-Age CORS header in seconds. Set to an integer to pass the header; otherwise, it is omitted.cacheControl
: Configures the Cache-Control header for CORS preflight responses. Set to an integer to pass the header as Cache-Control: max-age=${cacheControl}
, or set to a string to pass the header as Cache-Control: ${cacheControl}
. Otherwise, the header is omitted.preflightContinue
: Passes the CORS preflight response to the route handler. Default: false
.optionsSuccessStatus
: Provides a status code for successful OPTIONS
requests, as some legacy browsers (IE11, various SmartTVs) choke on 204
.preflight
: Disables preflight by passing false
. Default: true
.strictPreflight
: Enforces strict requirements for the CORS preflight request headers (Access-Control-Request-Method and Origin) as defined by the W3C CORS specification. Preflight requests without the required headers result in 400 errors when set to true
. Default: true
.hideOptionsRoute
: Hides the options route from documentation built using @fastify/swagger. Default: true
.Using RegExp
or a function
for the origin
parameter may enable Denial of Service attacks.
Craft with extreme care.
const fastify = require('fastify')()
fastify.register(require('@fastify/cors'), (instance) => {
return (req, callback) => {
const corsOptions = {
// This is NOT recommended for production as it enables reflection exploits
origin: true
};
// do not include CORS headers for requests from localhost
if (/^localhost$/m.test(req.headers.origin)) {
corsOptions.origin = false
}
// callback expects two parameters: error and options
callback(null, corsOptions)
}
})
fastify.register(async function (fastify) {
fastify.get('/', (req, reply) => {
reply.send({ hello: 'world' })
})
})
fastify.listen({ port: 3000 })
CORS can be disabled at the route level by setting the cors
option to false
.
const fastify = require('fastify')()
fastify.register(require('@fastify/cors'), { origin: '*' })
fastify.get('/cors-enabled', (_req, reply) => {
reply.send('CORS headers')
})
fastify.get('/cors-disabled', { cors: false }, (_req, reply) => {
reply.send('No CORS headers')
})
fastify.listen({ port: 3000 })
By default, @fastify/cors
adds an onRequest
hook for validation and header injection. This can be customized by passing hook
in the options. Valid values are onRequest
, preParsing
, preValidation
, preHandler
, preSerialization
, and onSend
.
import Fastify from 'fastify'
import cors from '@fastify/cors'
const fastify = Fastify()
await fastify.register(cors, {
hook: 'preHandler',
})
fastify.get('/', (req, reply) => {
reply.send({ hello: 'world' })
})
await fastify.listen({ port: 3000 })
To configure CORS asynchronously, provide an object with the delegator
key:
const fastify = require('fastify')()
fastify.register(require('@fastify/cors'), {
hook: 'preHandler',
delegator: (req, callback) => {
const corsOptions = {
// This is NOT recommended for production as it enables reflection exploits
origin: true
};
// do not include CORS headers for requests from localhost
if (/^localhost$/m.test(req.headers.origin)) {
corsOptions.origin = false
}
// callback expects two parameters: error and options
callback(null, corsOptions)
},
})
fastify.register(async function (fastify) {
fastify.get('/', (req, reply) => {
reply.send({ hello: 'world' })
})
})
fastify.listen({ port: 3000 })
The code is a port for Fastify of expressjs/cors
.
Licensed under MIT.
expressjs/cors
license
FAQs
Fastify CORS
The npm package @fastify/cors receives a total of 859,070 weekly downloads. As such, @fastify/cors popularity was classified as popular.
We found that @fastify/cors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 19 open source maintainers 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.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.