
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
nitro native CORS event handler.
npm install nitro-cors
pnpm add nitro-cors
yarn add nitro-cors
nitro CORS is built upon the h3 CORS utilities provided by the h3 library. To read more about h3's inbuilt cors library, please consult the h3 repository.
To get started, you can enable CORS on a specific event handler by using the object syntax definitions intorduced in nitro v2.6.0 and h3 v1.8.0 as follows:
import { cors } from 'nitro-cors'
export default eventHandler({
onRequest: [
cors({
origin: '*',
methods: '*'
// ... add your options overrides here
})
],
async handler(event) {
return 'Hello CORS!'
}
})
nitro-cors also provides a simple wrapper to define a CORS event handler per nitro event handler, or per route. To use it, simply import the defineCORSEventHandler
function and wrap your event handler with it as follows:
import { defineCORSEventHandler } from 'nitro-cors'
const handler = eventHandler(async event => {
// ...
})
export default defineCORSEventHandler(handler, {
origin: '*',
methods: '*'
})
...or... using as nitro middleware:
// :file middleware/cors.ts
import { corsEventHandler } from 'nitro-cors'
export default corsEventHandler(_event => {}, {
origin: '*',
methods: '*'
})
The defineCORSEventHandler
and corsEventHandler
functions take two arguments:
handler
: the event handler to wrap of type EventHandler<T>
, which will ensure typesafety for the event handler return type.options
: the options to pass to the cors handler of type H3CorsOptions
. These are the same options as the ones passed to the h3 cors library.The options passed to the cors handler are the same as the ones passed to the h3 cors library. Please consult the h3 repository
This library would not be possible if it were not for standing on the shoulders of these giants:
FAQs
observerly's CORS event handler for the Nitro web server
The npm package nitro-cors receives a total of 186 weekly downloads. As such, nitro-cors popularity was classified as not popular.
We found that nitro-cors 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.