@gaman/cors
v1.1.0
Published
**Lightweight & High-Performance CORS Middleware for GamanJS**. Built for Bun, optimized for speed.
Readme
@gaman/cors
Lightweight & High-Performance CORS Middleware for GamanJS. Built for Bun, optimized for speed.
Installation
bun add @gaman/corsQuick Used
import { defineBootstrap } from "gaman";
import { Cors } from "@gaman/cors";
defineBootstrap((app) => {
app.mount(Cors());
app.mountServer(...)
});