supa-cors
v1.0.6
Published
cors handler and req parser for supabase edge server (Deno)
Downloads
4
Readme
deno-cors-qs
import { withCors } from "npm:deno-cors-qs";
Deno.serve(
withCors(async (req) => {
return {
query: req.query,
body: req.jsonBody, // from post or put
_body: req._body, // combine query and jsonBody
ip: req._ip,
};
})
);