rsnext/examples/api-routes-cors
Max Proske 5145c2d5e2
chore(examples): Convert api-routes-cors example to TypeScript (#38356)
Convert `api-routes-cores` example to TypeScript to match Contribution docs.

- Update CORS configuration to match the [middleware Next.js docs](https://nextjs.org/docs/api-routes/api-middlewares#connectexpress-middleware-support)
- Allow POST requests as per instructions in `index.tsx`: "make a **POST** / GET / OPTIONS request to /api/cors"

## Documentation / Examples

- [X] Make sure the linting passes by running `pnpm lint`
- [X] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)
2022-07-06 13:12:40 +00:00
..
pages chore(examples): Convert api-routes-cors example to TypeScript (#38356) 2022-07-06 13:12:40 +00:00
.gitignore chore(examples): Convert api-routes-cors example to TypeScript (#38356) 2022-07-06 13:12:40 +00:00
next-env.d.ts chore(examples): Convert api-routes-cors example to TypeScript (#38356) 2022-07-06 13:12:40 +00:00
package.json chore(examples): Convert api-routes-cors example to TypeScript (#38356) 2022-07-06 13:12:40 +00:00
README.md Update pnpm create next-app for latest pnpm 6 and 7 (#37254) 2022-05-27 21:21:40 +00:00
tsconfig.json chore(examples): Convert api-routes-cors example to TypeScript (#38356) 2022-07-06 13:12:40 +00:00

API Routes Example with CORS

Next.js ships with API routes which provides an easy solution to build your own API.

This example shows how to create an API endpoint with CORS headers, using the cors package.

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example api-routes-cors api-routes-cors-app
# or
yarn create next-app --example api-routes-cors api-routes-cors-app
# or
pnpm create next-app --example api-routes-cors api-routes-cors-app

Deploy it to the cloud with Vercel (Documentation).