Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamnapo/just-the-cors
🚧 Tiny middleware to add cors support when using zeit's micro.
https://github.com/iamnapo/just-the-cors
cors cors-middleware micro microservice nodejs router routing zeit
Last synced: about 1 month ago
JSON representation
🚧 Tiny middleware to add cors support when using zeit's micro.
- Host: GitHub
- URL: https://github.com/iamnapo/just-the-cors
- Owner: iamnapo
- License: mit
- Created: 2019-07-16T17:57:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-09T20:50:21.000Z (about 4 years ago)
- Last Synced: 2024-09-29T18:02:19.734Z (3 months ago)
- Topics: cors, cors-middleware, micro, microservice, nodejs, router, routing, zeit
- Language: JavaScript
- Homepage:
- Size: 149 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# just-the-cors
> Tiny middleware to add cors support when using zeit's micro
[![build](https://img.shields.io/github/workflow/status/iamnapo/just-the-cors/ci?style=for-the-badge&logo=github&label=)](https://github.com/iamnapo/just-the-cors/actions) [![npm](https://img.shields.io/npm/v/just-the-cors.svg?style=for-the-badge&logo=npm&label=)](https://www.npmjs.com/package/just-the-cors) [![dependencies](https://img.shields.io/david/iamnapo/just-the-cors.svg?style=for-the-badge)](./package.json) [![license](https://img.shields.io/github/license/iamnapo/just-the-cors.svg?style=for-the-badge)](./LICENSE)
## Install
```console
$ npm i just-the-cors
```## Example
```js
const { send } = require("micro");
const { router, get } = require("microrouter");
const cors = require("just-the-cors");const getWithCors = (path, handler) => get(path, cors(handler));
const hello = cors((req, res) => send(res, 200, { message: "Hello 1!" }));
const hello2 = (req, res) => {
cors(req, res);
return send(res, 200, { message: "Hello 2!" });
};
const hello3 = (req, res) => send(res, 200, { message: "Hello 3!" });
const hello4 = (req, res) => send(res, 200, { message: "Hello 4!" });module.exports = router(
get("/hello/1", hello),
get("/hello/2", hello2),
get("/hello/3", cors(hello3)),
options("/hello/4", cors(hello4, { autoHandleOptions: false })),
getWithCors("/*", (req, res) => send(res, 200, { message: "Hello in general!" })),
);
```### Note
> If you don't supply the `res` object as a second argument, `cors` does nothing!
```js
const { router, get } = require("microrouter");
const cors = require("just-the-cors");const hello1 = (req) => {
cors(req); // Does nothing!
return "Hello 1";
};const hello2 = (req, res) => {
cors(req, res);
return "Hello 2";
};module.exports = router(
get("/hello1", hello1), // "Access-Control-Allow-Origin": ❌
get("/hello2", hello2) // "Access-Control-Allow-Origin": ✅
);
```