0.5.0 • Published 1 year ago
@fluvial/cors v0.5.0
@fluvial/cors
Middleware for Cross-Origin-Resource-Sharing (CORS) headers. CORS explains to the browser what is and is not allowed in HTTP requests. This includes loading assets (such as JavaScript, CSS, and images) and API calls. These CORS policies are often provided in response to preflight requests the browser sends prior to
CORS-related headers include the following:
Access-Control-Allow-Origin, which governs what origins the server will acceptAccess-Control-Allow-Credentials, which allows or denies JavaScript to access the credentials-related parts of the responseAccess-Control-Allow-Methods, which specifies what HTTP methods are permitted (e.g., GET, POST, etc.)Access-Control-Allow-Headers, which specifies what headers are permittedAccess-Control-Max-Age, which tells the browser how long the results of preflight requests are cachedAccess-Control-Expose-Headers, which tells the browser what headers are permitted to be accessed by JavaScript
More documentation about CORS can be found on MDN:
- CORS guide: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
 - CORS glossary and headers: https://developer.mozilla.org/en-US/docs/Glossary/CORS
 
Basic usage
// in a router or application file
import { cors } from '@fluvial/cors';
app.use(cors());API documentation
cors(options?: CorsOptions)
Allows you to configure the way the CORS middleware behaves and what it includes in its headers.
Arguments:
options(optional) -CorsOptions, which includes the following properties:continuePreflight(optional) -boolean, which indicates if you want the CORS middleware to not short-circuit in the case of a preflight request; default isfalsecontinueOnFailure(optional) -boolean, which indicates if requests that fail the CORS checks will continue past the CORS middleware; default isfalsepreflightStatusCode(optional) -number, which is the status code that returned preflight requests should have; default is204failureStatusCode(optional) -number, which is the status code that failed requests are given; default is405for invalid/disallowed methods and406for anything elseallowedOrigins(optional) -string[], which contains all of the origins that are allowed; default is[ '*' ]credentialsAllowed(optional) -boolean, which controls theAccess-Control-Allow-Credentialsheader; default istrueallowedMethods(optional) -string[]containing the methods that are allowed; default includesGET,POST,PUT,PATCH,DELETE,HEAD, andOPTIONSallowedHeaders(optional) -string[]specifying the header names allowed; defaults to the headers in the current requestmaxAge(optional) -numberrepresenting the number of seconds that the CORS options are cached in the requestexposedHeaders(optional) -string[], which contains the headers that are allowed to be exposed to the code running on the page; defaults to all headers allowed
Returns a middleware function that can be used in an Application or Router.
Contributing
See something you want this middleware to do? Find a bug? Feel free to open an issue or a PR with the fix or feature you want to add.