rsnext/examples/catch-all-routes
Joe Haddad 7d038dfef1
Suggest npx over npm init (#13637)
This updates old examples to the more universal `npx` command.

Fixes https://github.com/vercel/next.js/discussions/12103
2020-06-01 17:36:57 +00:00
..
components Add catch all routes example and a link to it in docs (#10202) 2020-01-27 13:29:05 -05:00
pages Add catch all routes example and a link to it in docs (#10202) 2020-01-27 13:29:05 -05:00
package.json Add catch all routes example and a link to it in docs (#10202) 2020-01-27 13:29:05 -05:00
README.md Suggest npx over npm init (#13637) 2020-06-01 17:36:57 +00:00

Catch All Routes Example

This example shows how to use Catch all routes in Next.js, which allows a dynamic route to catch all paths.

The catch all page is in pages/post/[...slug], it matches any path after /post, like the following:

  • /post/first-post,
  • /post/2020/first-post
  • /post/2020/first-post/with/catch/all/routes
  • Anything that matches the glob /post/**

You can use next/link as displayed in this example to route to these pages client side.

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

Using create-next-app

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

npx create-next-app --example catch-all-routes catch-all-routes-app
# or
yarn create next-app --example catch-all-routes catch-all-routes-app

Download manually

Download the example:

curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/catch-all-routes
cd catch-all-routes

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Deploy it to the cloud with Vercel (Documentation).