rsnext/examples/api-routes-middleware
Max Proske 88038ca21f
chore(examples): Convert api-routes-middleware example to TypeScript (#38358)
Convert `api-routes-middleware` example to TypeScript to match Contribution docs.

- Updated cookie util to match the [extending `res`  with TypeScript Next.js docs](https://nextjs.org/docs/api-routes/api-middlewares#connectexpress-middleware-support)

## 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:33:55 +00:00
..
pages chore(examples): Convert api-routes-middleware example to TypeScript (#38358) 2022-07-06 13:33:55 +00:00
utils chore(examples): Convert api-routes-middleware example to TypeScript (#38358) 2022-07-06 13:33:55 +00:00
.gitignore chore(examples): Convert api-routes-middleware example to TypeScript (#38358) 2022-07-06 13:33:55 +00:00
next-env.d.ts chore(examples): Convert api-routes-middleware example to TypeScript (#38358) 2022-07-06 13:33:55 +00:00
package.json chore(examples): Convert api-routes-middleware example to TypeScript (#38358) 2022-07-06 13:33:55 +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-middleware example to TypeScript (#38358) 2022-07-06 13:33:55 +00:00

API routes with middleware

Next.js ships with API routes, which provide an easy solution to build your own API. This example shows how to implement simple middleware to wrap around your API endpoints.

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-middleware api-routes-middleware-app
# or
yarn create next-app --example api-routes-middleware api-routes-middleware-app
# or
pnpm create next-app --example api-routes-middleware api-routes-middleware-app

Deploy it to the cloud with Vercel (Documentation).