diff --git a/contributing.md b/contributing.md index e98980b0f01b..0279cdf0ff6c 100644 --- a/contributing.md +++ b/contributing.md @@ -246,6 +246,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example DIRECTORY_NAME DIRECTORY_NAME-app # or yarn create next-app --example DIRECTORY_NAME DIRECTORY_NAME-app +# or +pnpm create next-app -- --example DIRECTORY_NAME DIRECTORY_NAME-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/docs/api-reference/create-next-app.md b/docs/api-reference/create-next-app.md index e291dd5e94f5..2cd4ceae501b 100644 --- a/docs/api-reference/create-next-app.md +++ b/docs/api-reference/create-next-app.md @@ -10,6 +10,8 @@ The easiest way to get started with Next.js is by using `create-next-app`. This npx create-next-app@latest # or yarn create next-app +# or +pnpm create next-app ``` You can create a [TypeScript project](https://github.com/vercel/next.js/blob/canary/docs/basic-features/typescript.md) with the `--ts, --typescript` flag: @@ -18,6 +20,8 @@ You can create a [TypeScript project](https://github.com/vercel/next.js/blob/can npx create-next-app@latest --ts # or yarn create next-app --typescript +# or +pnpm create next-app -- --ts ``` ### Options diff --git a/docs/basic-features/typescript.md b/docs/basic-features/typescript.md index 9869dc850e43..5f49ffb6bf63 100644 --- a/docs/basic-features/typescript.md +++ b/docs/basic-features/typescript.md @@ -27,6 +27,8 @@ You can create a TypeScript project with [`create-next-app`](https://nextjs.org/ npx create-next-app@latest --ts # or yarn create next-app --typescript +# or +pnpm create next-app -- --ts ``` ## Existing projects diff --git a/docs/getting-started.md b/docs/getting-started.md index 8506f02b9d49..b1497555c996 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -25,6 +25,8 @@ We recommend creating a new Next.js app using `create-next-app`, which sets up e npx create-next-app@latest # or yarn create next-app +# or +pnpm create next-app ``` If you want to start with a TypeScript project you can use the `--typescript` flag: @@ -33,6 +35,8 @@ If you want to start with a TypeScript project you can use the `--typescript` fl npx create-next-app@latest --typescript # or yarn create next-app --typescript +# or +pnpm create next-app -- --typescript ``` After the installation is complete: diff --git a/examples/active-class-name/README.md b/examples/active-class-name/README.md index 2beeba3e3cad..904d5f7e78db 100644 --- a/examples/active-class-name/README.md +++ b/examples/active-class-name/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example active-class-name active-class-name-app # or yarn create next-app --example active-class-name active-class-name-app +# or +pnpm create next-app -- --example active-class-name active-class-name-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/amp-first/README.md b/examples/amp-first/README.md index 4db9d29709f0..471e28bc181b 100644 --- a/examples/amp-first/README.md +++ b/examples/amp-first/README.md @@ -21,6 +21,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example amp-first amp-first-app # or yarn create next-app --example amp-first amp-first-app +# or +pnpm create next-app -- --example amp-first amp-first-app ``` Open [http://localhost:3000](http://localhost:3000) to view it in the browser. The page will reload if you make edits. You will also see AMP validation errors in the console. diff --git a/examples/amp-story/README.md b/examples/amp-story/README.md index 008980bf3214..91b2bbf1a272 100644 --- a/examples/amp-story/README.md +++ b/examples/amp-story/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example amp-story amp-story-app # or yarn create next-app --example amp-story amp-story-app +# or +pnpm create next-app -- --example amp-story amp-story-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/amp/README.md b/examples/amp/README.md index 33aa31b3684e..bb6a4fa93d6b 100644 --- a/examples/amp/README.md +++ b/examples/amp/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example amp amp-app # or yarn create next-app --example amp amp-app +# or +pnpm create next-app -- --example amp amp-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/analyze-bundles/README.md b/examples/analyze-bundles/README.md index 02481f057930..bc108d790da4 100644 --- a/examples/analyze-bundles/README.md +++ b/examples/analyze-bundles/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example analyze-bundles analyze-bundles-app # or yarn create next-app --example analyze-bundles analyze-bundles-app +# or +pnpm create next-app -- --example analyze-bundles analyze-bundles-app ``` ### Analyze webpack output diff --git a/examples/api-routes-apollo-server-and-client-auth/README.md b/examples/api-routes-apollo-server-and-client-auth/README.md index 18c549291094..b2e3edda6aee 100644 --- a/examples/api-routes-apollo-server-and-client-auth/README.md +++ b/examples/api-routes-apollo-server-and-client-auth/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-apollo-server-and-client-auth api-routes-apollo-server-and-client-auth-app # or yarn create next-app --example api-routes-apollo-server-and-client-auth api-routes-apollo-server-and-client-auth-app +# or +pnpm create next-app -- --example api-routes-apollo-server-and-client-auth api-routes-apollo-server-and-client-auth-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-apollo-server-and-client/README.md b/examples/api-routes-apollo-server-and-client/README.md index 0929222aba86..0e2ebaf4368e 100644 --- a/examples/api-routes-apollo-server-and-client/README.md +++ b/examples/api-routes-apollo-server-and-client/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-apollo-server-and-client api-routes-apollo-server-and-client-app # or yarn create next-app --example api-routes-apollo-server-and-client api-routes-apollo-server-and-client-app +# or +pnpm create next-app -- --example api-routes-apollo-server-and-client api-routes-apollo-server-and-client-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-apollo-server/README.md b/examples/api-routes-apollo-server/README.md index 775647bd007e..4466ede389ab 100644 --- a/examples/api-routes-apollo-server/README.md +++ b/examples/api-routes-apollo-server/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-apollo-server api-routes-apollo-server-app # or yarn create next-app --example api-routes-apollo-server api-routes-apollo-server-app +# or +pnpm create next-app -- --example api-routes-apollo-server api-routes-apollo-server-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-cors/README.md b/examples/api-routes-cors/README.md index c7985f9e72ca..e894e59495cf 100644 --- a/examples/api-routes-cors/README.md +++ b/examples/api-routes-cors/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-graphql/README.md b/examples/api-routes-graphql/README.md index 26429515510c..449141e4469c 100644 --- a/examples/api-routes-graphql/README.md +++ b/examples/api-routes-graphql/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-graphql api-routes-graphql-app # or yarn create next-app --example api-routes-graphql api-routes-graphql-app +# or +pnpm create next-app -- --example api-routes-graphql api-routes-graphql-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-middleware/README.md b/examples/api-routes-middleware/README.md index 4da0802bcc86..e4d6cfe4d353 100644 --- a/examples/api-routes-middleware/README.md +++ b/examples/api-routes-middleware/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-rate-limit/README.md b/examples/api-routes-rate-limit/README.md index 65f0d38c1f70..91e5560a72cf 100644 --- a/examples/api-routes-rate-limit/README.md +++ b/examples/api-routes-rate-limit/README.md @@ -30,6 +30,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-rate-limit api-routes-rate-limit-app # or yarn create next-app --example api-routes-rate-limit api-routes-rate-limit-app +# or +pnpm create next-app -- --example api-routes-rate-limit api-routes-rate-limit-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-rest/README.md b/examples/api-routes-rest/README.md index 643168e1ab27..e4bf19801b7a 100644 --- a/examples/api-routes-rest/README.md +++ b/examples/api-routes-rest/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-rest api-routes-rest-app # or yarn create next-app --example api-routes-rest api-routes-rest-app +# or +pnpm create next-app -- --example api-routes-rest api-routes-rest-app ``` ### Deploy to Vercel diff --git a/examples/api-routes/README.md b/examples/api-routes/README.md index 325c7ac6630a..108cb253d8ef 100644 --- a/examples/api-routes/README.md +++ b/examples/api-routes/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes api-routes-app # or yarn create next-app --example api-routes api-routes-app +# or +pnpm create next-app -- --example api-routes api-routes-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/auth0/README.md b/examples/auth0/README.md index e2b2d97bb438..f28e16961c55 100644 --- a/examples/auth0/README.md +++ b/examples/auth0/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example auth0 auth0-app # or yarn create next-app --example auth0 auth0-app +# or +pnpm create next-app -- --example auth0 auth0-app ``` ## Configuring Auth0 diff --git a/examples/basic-css/README.md b/examples/basic-css/README.md index dd7b15ec2564..e42a02b77dec 100644 --- a/examples/basic-css/README.md +++ b/examples/basic-css/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example basic-css basic-css-app # or yarn create next-app --example basic-css basic-css-app +# or +pnpm create next-app -- --example basic-css basic-css-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/basic-export/README.md b/examples/basic-export/README.md index 9f991ed18f02..69e459f43e98 100644 --- a/examples/basic-export/README.md +++ b/examples/basic-export/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example basic-export basic-export-app # or yarn create next-app --example basic-export basic-export-app +# or +pnpm create next-app -- --example basic-export basic-export-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/blog-starter-typescript/README.md b/examples/blog-starter-typescript/README.md index d0762fc48731..75b98d962ef2 100644 --- a/examples/blog-starter-typescript/README.md +++ b/examples/blog-starter-typescript/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example blog-starter-typescript blog-starter-typescript-app # or yarn create next-app --example blog-starter-typescript blog-starter-typescript-app +# or +pnpm create next-app -- --example blog-starter-typescript blog-starter-typescript-app ``` Your blog should be up and running on [http://localhost:3000](http://localhost:3000)! If it doesn't work, post on [GitHub discussions](https://github.com/vercel/next.js/discussions). diff --git a/examples/blog-starter/README.md b/examples/blog-starter/README.md index 4ed711c3557c..1744d7d37567 100644 --- a/examples/blog-starter/README.md +++ b/examples/blog-starter/README.md @@ -47,6 +47,8 @@ or ``` yarn create next-app --example blog-starter blog-starter-app +# or +pnpm create next-app -- --example blog-starter blog-starter-app ``` diff --git a/examples/blog/README.md b/examples/blog/README.md index f9c07a6b0e24..9a4971ec3eea 100644 --- a/examples/blog/README.md +++ b/examples/blog/README.md @@ -31,6 +31,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example blog my-blog # or yarn create next-app --example blog my-blog +# or +pnpm create next-app -- --example blog my-blog ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/catch-all-routes/README.md b/examples/catch-all-routes/README.md index 4172669d9f7e..23268580fc66 100644 --- a/examples/catch-all-routes/README.md +++ b/examples/catch-all-routes/README.md @@ -25,6 +25,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 +# or +pnpm create next-app -- --example catch-all-routes catch-all-routes-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/cms-agilitycms/README.md b/examples/cms-agilitycms/README.md index b7a66cbcea02..36ad38162942 100644 --- a/examples/cms-agilitycms/README.md +++ b/examples/cms-agilitycms/README.md @@ -42,6 +42,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-agilitycms cms-agilitycms-app # or yarn create next-app --example cms-agilitycms cms-agilitycms-app +# or +pnpm create next-app -- --example cms-agilitycms cms-agilitycms-app ``` ## Configuration diff --git a/examples/cms-builder-io/README.md b/examples/cms-builder-io/README.md index f08e79b70755..589d1a2968ca 100644 --- a/examples/cms-builder-io/README.md +++ b/examples/cms-builder-io/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-builder-io cms-builder-io-app # or yarn create next-app --example cms-builder-io cms-builder-io-app +# or +pnpm create next-app -- --example cms-builder-io cms-builder-io-app ``` ## Configuration diff --git a/examples/cms-buttercms/README.md b/examples/cms-buttercms/README.md index fc3c156ea449..bf57965882e9 100644 --- a/examples/cms-buttercms/README.md +++ b/examples/cms-buttercms/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-buttercms cms-buttercms-app # or yarn create next-app --example cms-buttercms cms-buttercms-app +# or +pnpm create next-app -- --example cms-buttercms cms-buttercms-app ``` ## Configuration diff --git a/examples/cms-contentful/README.md b/examples/cms-contentful/README.md index d091e0627216..34d963c8ff9c 100644 --- a/examples/cms-contentful/README.md +++ b/examples/cms-contentful/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-contentful cms-contentful-app # or yarn create next-app --example cms-contentful cms-contentful-app +# or +pnpm create next-app -- --example cms-contentful cms-contentful-app ``` ## Configuration diff --git a/examples/cms-cosmic/README.md b/examples/cms-cosmic/README.md index 3bd28143fddc..589c1a9a24e5 100644 --- a/examples/cms-cosmic/README.md +++ b/examples/cms-cosmic/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-cosmic cms-cosmic-app # or yarn create next-app --example cms-cosmic cms-cosmic-app +# or +pnpm create next-app -- --example cms-cosmic cms-cosmic-app ``` ## Configuration diff --git a/examples/cms-datocms/README.md b/examples/cms-datocms/README.md index 77c1d4bb3475..924fbb2722cb 100644 --- a/examples/cms-datocms/README.md +++ b/examples/cms-datocms/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-datocms cms-datocms-app # or yarn create next-app --example cms-datocms cms-datocms-app +# or +pnpm create next-app -- --example cms-datocms cms-datocms-app ``` ## Configuration diff --git a/examples/cms-drupal/README.md b/examples/cms-drupal/README.md index 7b27e17e005d..954038080a00 100644 --- a/examples/cms-drupal/README.md +++ b/examples/cms-drupal/README.md @@ -38,6 +38,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-drupal cms-drupal-app # or yarn create next-app --example cms-drupal cms-drupal-app +# or +pnpm create next-app -- --example cms-drupal cms-drupal-app ``` ## Setup Drupal diff --git a/examples/cms-ghost/README.md b/examples/cms-ghost/README.md index fab3a4557757..8bbbba42e6c1 100644 --- a/examples/cms-ghost/README.md +++ b/examples/cms-ghost/README.md @@ -37,6 +37,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-ghost cms-ghost-app # or yarn create next-app --example cms-ghost cms-ghost-app +# or +pnpm create next-app -- --example cms-ghost cms-ghost-app ``` ### Setp 1. Run Next.js in development mode diff --git a/examples/cms-graphcms/README.md b/examples/cms-graphcms/README.md index 6e31c352ef58..044a50882939 100644 --- a/examples/cms-graphcms/README.md +++ b/examples/cms-graphcms/README.md @@ -42,6 +42,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-graphcms cms-graphcms-app # or yarn create next-app --example cms-graphcms cms-graphcms-app +# or +pnpm create next-app -- --example cms-graphcms cms-graphcms-app ``` ## Configuration diff --git a/examples/cms-kontent/README.md b/examples/cms-kontent/README.md index 583cf19d2f24..c95a03ee0d4d 100644 --- a/examples/cms-kontent/README.md +++ b/examples/cms-kontent/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-kontent cms-kontent-app # or yarn create next-app --example cms-kontent cms-kontent-app +# or +pnpm create next-app -- --example cms-kontent cms-kontent-app ``` ## Configuration diff --git a/examples/cms-prepr/README.md b/examples/cms-prepr/README.md index b44762576f2f..92df09c6ccb2 100644 --- a/examples/cms-prepr/README.md +++ b/examples/cms-prepr/README.md @@ -41,6 +41,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-prepr cms-prepr-app # or yarn create next-app --example cms-prepr cms-prepr-app +# or +pnpm create next-app -- --example cms-prepr cms-prepr-app ``` ## Configuration diff --git a/examples/cms-prismic/README.md b/examples/cms-prismic/README.md index c3ec749acbd8..25991fdbebcb 100644 --- a/examples/cms-prismic/README.md +++ b/examples/cms-prismic/README.md @@ -38,6 +38,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-prismic cms-prismic-app # or yarn create next-app --example cms-prismic cms-prismic-app +# or +pnpm create next-app -- --example cms-prismic cms-prismic-app ``` ## Configuration diff --git a/examples/cms-sanity/README.md b/examples/cms-sanity/README.md index baa88574e837..d3cc5ac30d78 100644 --- a/examples/cms-sanity/README.md +++ b/examples/cms-sanity/README.md @@ -45,6 +45,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-sanity cms-sanity-app # or yarn create next-app --example cms-sanity cms-sanity-app +# or +pnpm create next-app -- --example cms-sanity cms-sanity-app ``` ## Configuration diff --git a/examples/cms-storyblok/README.md b/examples/cms-storyblok/README.md index 042404940228..1c7ebe1529d0 100644 --- a/examples/cms-storyblok/README.md +++ b/examples/cms-storyblok/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-storyblok cms-storyblok-app # or yarn create next-app --example cms-storyblok cms-storyblok-app +# or +pnpm create next-app -- --example cms-storyblok cms-storyblok-app ``` ## Configuration diff --git a/examples/cms-strapi/README.md b/examples/cms-strapi/README.md index 6ef231d35274..aff5e39697f0 100644 --- a/examples/cms-strapi/README.md +++ b/examples/cms-strapi/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-strapi cms-strapi-app # or yarn create next-app --example cms-strapi cms-strapi-app +# or +pnpm create next-app -- --example cms-strapi cms-strapi-app ``` ## Configuration diff --git a/examples/cms-takeshape/README.md b/examples/cms-takeshape/README.md index 4cfcbd8c43ef..5c9475731a61 100644 --- a/examples/cms-takeshape/README.md +++ b/examples/cms-takeshape/README.md @@ -38,6 +38,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-takeshape cms-takeshape-app # or yarn create next-app --example cms-takeshape cms-takeshape-app +# or +pnpm create next-app -- --example cms-takeshape cms-takeshape-app ``` ## Configuration diff --git a/examples/cms-tina/README.md b/examples/cms-tina/README.md index 6f0b3efb5d94..2375425abf49 100644 --- a/examples/cms-tina/README.md +++ b/examples/cms-tina/README.md @@ -31,6 +31,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-tina cms-tina-app # or yarn create next-app --example cms-ghost cms-tina-app +# or +pnpm create next-app -- --example cms-ghost cms-tina-app ``` ### Setp 1. Run Next.js in development mode diff --git a/examples/cms-umbraco-heartcore/README.md b/examples/cms-umbraco-heartcore/README.md index 3803070e46d0..def24e4d3f34 100755 --- a/examples/cms-umbraco-heartcore/README.md +++ b/examples/cms-umbraco-heartcore/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-umbraco-heartcore cms-umbraco-heartcore-app # or yarn create next-app --example cms-umbraco-heartcore cms-umbraco-heartcore-app +# or +pnpm create next-app -- --example cms-umbraco-heartcore cms-umbraco-heartcore-app ``` ## Configuration diff --git a/examples/cms-wordpress/README.md b/examples/cms-wordpress/README.md index 153cabcadbca..793e91ac50a3 100644 --- a/examples/cms-wordpress/README.md +++ b/examples/cms-wordpress/README.md @@ -38,6 +38,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-wordpress cms-wordpress-app # or yarn create next-app --example cms-wordpress cms-wordpress-app +# or +pnpm create next-app -- --example cms-wordpress cms-wordpress-app ``` ## Configuration diff --git a/examples/custom-routes-proxying/README.md b/examples/custom-routes-proxying/README.md index 31b72c02b891..88173a339c8e 100644 --- a/examples/custom-routes-proxying/README.md +++ b/examples/custom-routes-proxying/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-routes-proxying custom-routes-proxying-app # or yarn create next-app --example custom-routes-proxying custom-routes-proxying-app +# or +pnpm create next-app -- --example custom-routes-proxying custom-routes-proxying-app ``` ### Step 4. Run Next.js in development mode diff --git a/examples/custom-server-actionhero/README.md b/examples/custom-server-actionhero/README.md index 62dcb0675609..3b83adbd4631 100644 --- a/examples/custom-server-actionhero/README.md +++ b/examples/custom-server-actionhero/README.md @@ -13,6 +13,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-actionhero custom-server-actionhero-app # or yarn create next-app --example custom-server-actionhero custom-server-actionhero-app +# or +pnpm create next-app -- --example custom-server-actionhero custom-server-actionhero-app ``` ## How does this work? diff --git a/examples/custom-server-express/README.md b/examples/custom-server-express/README.md index 063fa028096f..a29d3c20aab2 100644 --- a/examples/custom-server-express/README.md +++ b/examples/custom-server-express/README.md @@ -18,4 +18,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-express custom-server-express-app # or yarn create next-app --example custom-server-express custom-server-express-app +# or +pnpm create next-app -- --example custom-server-express custom-server-express-app ``` diff --git a/examples/custom-server-fastify/README.md b/examples/custom-server-fastify/README.md index de26fbb96023..08e27e057f3c 100644 --- a/examples/custom-server-fastify/README.md +++ b/examples/custom-server-fastify/README.md @@ -20,4 +20,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-fastify custom-server-fastify-app # or yarn create next-app --example custom-server-fastify custom-server-fastify-app +# or +pnpm create next-app -- --example custom-server-fastify custom-server-fastify-app ``` diff --git a/examples/custom-server-hapi/README.md b/examples/custom-server-hapi/README.md index 63d9c3ed1225..b4ba29590f17 100644 --- a/examples/custom-server-hapi/README.md +++ b/examples/custom-server-hapi/README.md @@ -18,4 +18,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-hapi custom-server-hapi-app # or yarn create next-app --example custom-server-hapi custom-server-hapi-app +# or +pnpm create next-app -- --example custom-server-hapi custom-server-hapi-app ``` diff --git a/examples/custom-server-koa/README.md b/examples/custom-server-koa/README.md index 278579c7d1bc..f6d9030111aa 100644 --- a/examples/custom-server-koa/README.md +++ b/examples/custom-server-koa/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-koa custom-server-koa-app # or yarn create next-app --example custom-server-koa custom-server-koa-app +# or +pnpm create next-app -- --example custom-server-koa custom-server-koa-app ``` ## Side note: Enabling gzip compression diff --git a/examples/custom-server-polka/README.md b/examples/custom-server-polka/README.md index d91a6b9407e3..97b7a9a6dc0e 100644 --- a/examples/custom-server-polka/README.md +++ b/examples/custom-server-polka/README.md @@ -18,4 +18,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-polka custom-server-polka-app # or yarn create next-app --example custom-server-polka custom-server-polka-app +# or +pnpm create next-app -- --example custom-server-polka custom-server-polka-app ``` diff --git a/examples/custom-server-typescript/README.md b/examples/custom-server-typescript/README.md index f100433b8d58..80c8e2ccb98a 100644 --- a/examples/custom-server-typescript/README.md +++ b/examples/custom-server-typescript/README.md @@ -19,4 +19,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-typescript custom-server-typescript-app # or yarn create next-app --example custom-server-typescript custom-server-typescript-app +# or +pnpm create next-app -- --example custom-server-typescript custom-server-typescript-app ``` diff --git a/examples/data-fetch/README.md b/examples/data-fetch/README.md index fd43c255d234..e27dc1ddfcf1 100644 --- a/examples/data-fetch/README.md +++ b/examples/data-fetch/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example data-fetch data-fetch-app # or yarn create next-app --example data-fetch data-fetch-app +# or +pnpm create next-app -- --example data-fetch data-fetch-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/dynamic-routing/README.md b/examples/dynamic-routing/README.md index 1944e28e70ac..fc23c234a049 100644 --- a/examples/dynamic-routing/README.md +++ b/examples/dynamic-routing/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example dynamic-routing dynamic-routing-app # or yarn create next-app --example dynamic-routing dynamic-routing-app +# or +pnpm create next-app -- --example dynamic-routing dynamic-routing-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/environment-variables/readme.md b/examples/environment-variables/readme.md index d6ffcfcce64c..d244f746a2bf 100644 --- a/examples/environment-variables/readme.md +++ b/examples/environment-variables/readme.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example environment-variables environment-variables-app # or yarn create next-app --example environment-variables environment-variables-app +# or +pnpm create next-app -- --example environment-variables environment-variables-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/fast-refresh-demo/README.md b/examples/fast-refresh-demo/README.md index 7fbb3b73f6d4..ec9785b686d7 100644 --- a/examples/fast-refresh-demo/README.md +++ b/examples/fast-refresh-demo/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example fast-refresh-demo fast-refresh-demo-app # or yarn create next-app --example fast-refresh-demo fast-refresh-demo-app +# or +pnpm create next-app -- --example fast-refresh-demo fast-refresh-demo-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/gh-pages/README.md b/examples/gh-pages/README.md index fbd34532847c..0cfff646843b 100644 --- a/examples/gh-pages/README.md +++ b/examples/gh-pages/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example gh-pages gh-pages-app # or yarn create next-app --example gh-pages gh-pages-app +# or +pnpm create next-app -- --example gh-pages gh-pages-app ``` ### Deploy it to github diff --git a/examples/head-elements/README.md b/examples/head-elements/README.md index 3304aff0aab2..3844d7a74d90 100644 --- a/examples/head-elements/README.md +++ b/examples/head-elements/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example head-elements head-elements-app # or yarn create next-app --example head-elements head-elements-app +# or +pnpm create next-app -- --example head-elements head-elements-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/headers/README.md b/examples/headers/README.md index eca28d362568..df62fb0e47e2 100644 --- a/examples/headers/README.md +++ b/examples/headers/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example headers headers-app # or yarn create next-app --example headers headers-app +# or +pnpm create next-app -- --example headers headers-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/hello-world/README.md b/examples/hello-world/README.md index ff2c2da16660..8592bc9bf23e 100644 --- a/examples/hello-world/README.md +++ b/examples/hello-world/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example hello-world hello-world-app # or yarn create next-app --example hello-world hello-world-app +# or +pnpm create next-app -- --example hello-world hello-world-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/i18n-routing/README.md b/examples/i18n-routing/README.md index e4bc986d74f3..021bc69b7bb8 100644 --- a/examples/i18n-routing/README.md +++ b/examples/i18n-routing/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example i18n-routing i18n-app # or yarn create next-app --example i18n-routing i18n-app +# or +pnpm create next-app -- --example i18n-routing i18n-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/image-component/README.md b/examples/image-component/README.md index 0a028aa05f50..dbf0a4c6bb3a 100644 --- a/examples/image-component/README.md +++ b/examples/image-component/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example image-component image-app # or yarn create next-app --example image-component image-app +# or +pnpm create next-app -- --example image-component image-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/layout-component/README.md b/examples/layout-component/README.md index 414a482de752..a1f83973c7db 100644 --- a/examples/layout-component/README.md +++ b/examples/layout-component/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example layout-component layout-component-app # or yarn create next-app --example layout-component layout-component-app +# or +pnpm create next-app -- --example layout-component layout-component-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/modularize-imports/README.md b/examples/modularize-imports/README.md index c80cdb596798..3a1b6df2317c 100644 --- a/examples/modularize-imports/README.md +++ b/examples/modularize-imports/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example modularize-imports modularize-imports-app # or yarn create next-app --example modularize-imports modularize-imports-app +# or +pnpm create next-app -- --example modularize-imports modularize-imports-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/nested-components/README.md b/examples/nested-components/README.md index 76262f379f1f..51a55a0e7658 100644 --- a/examples/nested-components/README.md +++ b/examples/nested-components/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example nested-components nested-components-app # or yarn create next-app --example nested-components nested-components-app +# or +pnpm create next-app -- --example nested-components nested-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/next-forms/README.md b/examples/next-forms/README.md index 21ce3b9e6a61..212004b23676 100644 --- a/examples/next-forms/README.md +++ b/examples/next-forms/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example next-forms next-forms-app # or yarn create next-app --example next-forms next-forms-app +# or +pnpm create next-app -- --example next-forms next-forms-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/progressive-render/README.md b/examples/progressive-render/README.md index 6f653bd634a7..7a786b8deef1 100644 --- a/examples/progressive-render/README.md +++ b/examples/progressive-render/README.md @@ -30,6 +30,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example progressive-render progressive-render-app # or yarn create next-app --example progressive-render progressive-render-app +# or +pnpm create next-app -- --example progressive-render progressive-render-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/progressive-web-app/README.md b/examples/progressive-web-app/README.md index 1358917e92f6..726102bc3629 100644 --- a/examples/progressive-web-app/README.md +++ b/examples/progressive-web-app/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example progressive-web-app progressive-web-app # or yarn create next-app --example progressive-web-app progressive-web-app +# or +pnpm create next-app -- --example progressive-web-app progressive-web-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/react-remove-properties/README.md b/examples/react-remove-properties/README.md index 20a58dcd3105..53bac229f166 100644 --- a/examples/react-remove-properties/README.md +++ b/examples/react-remove-properties/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example react-remove-properties react-remove-properties-app # or yarn create next-app --example react-remove-properties react-remove-properties-app +# or +pnpm create next-app -- --example react-remove-properties react-remove-properties-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/redirects/README.md b/examples/redirects/README.md index 07e8e10e4f30..ccb3d2b30f13 100644 --- a/examples/redirects/README.md +++ b/examples/redirects/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example redirects redirects-app # or yarn create next-app --example redirects redirects-app +# or +pnpm create next-app -- --example redirects redirects-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/remove-console/README.md b/examples/remove-console/README.md index cb24cb06c242..4ef4af967f40 100644 --- a/examples/remove-console/README.md +++ b/examples/remove-console/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example remove-console remove-console-app # or yarn create next-app --example remove-console remove-console-app +# or +pnpm create next-app -- --example remove-console remove-console-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/rewrites/README.md b/examples/rewrites/README.md index 5d16b71fa220..19f14cd498f4 100644 --- a/examples/rewrites/README.md +++ b/examples/rewrites/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example rewrites rewrites-app # or yarn create next-app --example rewrites rewrites-app +# or +pnpm create next-app -- --example rewrites rewrites-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/script-component/README.md b/examples/script-component/README.md index dc2e9d31338d..aa7e29e9ab21 100644 --- a/examples/script-component/README.md +++ b/examples/script-component/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example script-component script-component-app # or yarn create next-app --example script-component script-component-app +# or +pnpm create next-app -- --example script-component script-component-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/ssr-caching/README.md b/examples/ssr-caching/README.md index 5972762cb1be..7649f4bc3ec0 100644 --- a/examples/ssr-caching/README.md +++ b/examples/ssr-caching/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example ssr-caching ssr-caching-app # or yarn create next-app --example ssr-caching ssr-caching-app +# or +pnpm create next-app -- --example ssr-caching ssr-caching-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/styled-jsx-with-csp/README.md b/examples/styled-jsx-with-csp/README.md index 752466cf1d06..850c715e9788 100644 --- a/examples/styled-jsx-with-csp/README.md +++ b/examples/styled-jsx-with-csp/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example styled-jsx-with-csp styled-jsx-with-csp-app # or yarn create next-app --example styled-jsx-with-csp styled-jsx-with-csp-app +# or +pnpm create next-app -- --example styled-jsx-with-csp styled-jsx-with-csp-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/svg-components/README.md b/examples/svg-components/README.md index b63c3a405fb8..e19c0ea5bed4 100644 --- a/examples/svg-components/README.md +++ b/examples/svg-components/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example svg-components svg-components-app # or yarn create next-app --example svg-components svg-components-app +# or +pnpm create next-app -- --example svg-components svg-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/using-preact/README.md b/examples/using-preact/README.md index 817b7a564b6d..72cfad4d45c7 100644 --- a/examples/using-preact/README.md +++ b/examples/using-preact/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example using-preact using-preact-app # or yarn create next-app --example using-preact using-preact-app +# or +pnpm create next-app -- --example using-preact using-preact-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/using-router/README.md b/examples/using-router/README.md index 5f303be433f6..27fd53cf3cb2 100644 --- a/examples/using-router/README.md +++ b/examples/using-router/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example using-router using-router-app # or yarn create next-app --example using-router using-router-app +# or +pnpm create next-app -- --example using-router using-router-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-absolute-imports/README.md b/examples/with-absolute-imports/README.md index e84ea80288ef..a4f9a0b88026 100644 --- a/examples/with-absolute-imports/README.md +++ b/examples/with-absolute-imports/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-absolute-imports with-absolute-imports-app # or yarn create next-app --example with-absolute-imports with-absolute-imports-app +# or +pnpm create next-app -- --example with-absolute-imports with-absolute-imports-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-algolia-react-instantsearch/README.md b/examples/with-algolia-react-instantsearch/README.md index 14f262033aef..fad73681d14f 100644 --- a/examples/with-algolia-react-instantsearch/README.md +++ b/examples/with-algolia-react-instantsearch/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-algolia-react-instantsearch with-algolia-react-instantsearch-app # or yarn create next-app --example with-algolia-react-instantsearch with-algolia-react-instantsearch-app +# or +pnpm create next-app -- --example with-algolia-react-instantsearch with-algolia-react-instantsearch-app ``` To set up Algolia: diff --git a/examples/with-ant-design/README.md b/examples/with-ant-design/README.md index 9419ed92695b..3c0de016088d 100644 --- a/examples/with-ant-design/README.md +++ b/examples/with-ant-design/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-ant-design with-ant-design-app # or yarn create next-app --example with-ant-design with-ant-design-app +# or +pnpm create next-app -- --example with-ant-design with-ant-design-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-aphrodite/README.md b/examples/with-aphrodite/README.md index 622d5257e4fa..3170214a3a5a 100644 --- a/examples/with-aphrodite/README.md +++ b/examples/with-aphrodite/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-aphrodite with-aphrodite-app # or yarn create next-app --example with-aphrodite with-aphrodite-app +# or +pnpm create next-app -- --example with-aphrodite with-aphrodite-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-apollo-and-redux/README.md b/examples/with-apollo-and-redux/README.md index f1f55be5d1b9..06ef6593d73b 100644 --- a/examples/with-apollo-and-redux/README.md +++ b/examples/with-apollo-and-redux/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-apollo-and-redux with-apollo-and-redux-app # or yarn create next-app --example with-apollo-and-redux with-apollo-and-redux-app +# or +pnpm create next-app -- --example with-apollo-and-redux with-apollo-and-redux-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-apollo-neo4j-graphql/README.md b/examples/with-apollo-neo4j-graphql/README.md index 9787cb2ac071..935f1a0040ee 100644 --- a/examples/with-apollo-neo4j-graphql/README.md +++ b/examples/with-apollo-neo4j-graphql/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-apollo-neo4j-graphql with-apollo-neo4j-graphql-app # or yarn create next-app --example with-apollo-neo4j-graphql with-apollo-neo4j-graphql-app +# or +pnpm create next-app -- --example with-apollo-neo4j-graphql with-apollo-neo4j-graphql-app ``` ## Configuration diff --git a/examples/with-apollo/README.md b/examples/with-apollo/README.md index d7681e1f2e10..5504d54f8d3b 100644 --- a/examples/with-apollo/README.md +++ b/examples/with-apollo/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-apollo with-apollo-app # or yarn create next-app --example with-apollo with-apollo-app +# or +pnpm create next-app -- --example with-apollo with-apollo-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-app-layout/README.md b/examples/with-app-layout/README.md index dbaeefafe235..b59fa3a06b17 100644 --- a/examples/with-app-layout/README.md +++ b/examples/with-app-layout/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-app-layout with-app-layout-app # or yarn create next-app --example with-app-layout with-app-layout-app +# or +pnpm create next-app -- --example with-app-layout with-app-layout-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-aws-amplify-typescript/README.md b/examples/with-aws-amplify-typescript/README.md index 9d4778590a9b..3fb2290a025e 100644 --- a/examples/with-aws-amplify-typescript/README.md +++ b/examples/with-aws-amplify-typescript/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-aws-amplify-typescript nextjs-aws-amplify-typescript-app # or yarn create next-app --example with-aws-amplify-typescript nextjs-aws-amplify-typescript-app +# or +pnpm create next-app -- --example with-aws-amplify-typescript nextjs-aws-amplify-typescript-app ``` ### Initialize and deploy the Amplify project diff --git a/examples/with-aws-amplify/README.md b/examples/with-aws-amplify/README.md index 21f9d97e543f..f11984530b90 100644 --- a/examples/with-aws-amplify/README.md +++ b/examples/with-aws-amplify/README.md @@ -17,6 +17,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-aws-amplify nextjs-aws-amplify-app # or yarn create next-app --example with-aws-amplify nextjs-aws-amplify-app +# or +pnpm create next-app -- --example with-aws-amplify nextjs-aws-amplify-app ``` ### Initialize and deploy the Amplify project diff --git a/examples/with-babel-macros/README.md b/examples/with-babel-macros/README.md index 7d56310b5bc3..c0d1afc61806 100644 --- a/examples/with-babel-macros/README.md +++ b/examples/with-babel-macros/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-babel-macros with-babel-macros-app # or yarn create next-app --example with-babel-macros with-babel-macros-app +# or +pnpm create next-app -- --example with-babel-macros with-babel-macros-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-carbon-components/README.md b/examples/with-carbon-components/README.md index af10357c70ee..088a96d91d47 100644 --- a/examples/with-carbon-components/README.md +++ b/examples/with-carbon-components/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-carbon-components with-carbon-components-app # or yarn create next-app --example with-carbon-components with-carbon-components-app +# or +pnpm create next-app -- --example with-carbon-components with-carbon-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cerebral/README.md b/examples/with-cerebral/README.md index 964f16c643f1..76f29ceac421 100644 --- a/examples/with-cerebral/README.md +++ b/examples/with-cerebral/README.md @@ -48,6 +48,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-cerebral with-cerebral-app # or yarn create next-app --example with-cerebral with-cerebral-app +# or +pnpm create next-app -- --example with-cerebral with-cerebral-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-chakra-ui-typescript/README.md b/examples/with-chakra-ui-typescript/README.md index b0d6e19fce5d..ec21712d4005 100644 --- a/examples/with-chakra-ui-typescript/README.md +++ b/examples/with-chakra-ui-typescript/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-chakra-ui-typescript with-chakra-ui-typescript-app # or yarn create next-app --example with-chakra-ui-typescript with-chakra-ui-typescript-app +# or +pnpm create next-app -- --example with-chakra-ui-typescript with-chakra-ui-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-chakra-ui/README.md b/examples/with-chakra-ui/README.md index 1a0076e85fef..3c4630663289 100644 --- a/examples/with-chakra-ui/README.md +++ b/examples/with-chakra-ui/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-chakra-ui with-chakra-ui-app # or yarn create next-app --example with-chakra-ui with-chakra-ui-app +# or +pnpm create next-app -- --example with-chakra-ui with-chakra-ui-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-clerk/README.md b/examples/with-clerk/README.md index d245df305c24..ed63002daae1 100644 --- a/examples/with-clerk/README.md +++ b/examples/with-clerk/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-clerk with-clerk-app # or yarn create next-app --example with-clerk with-clerk-app +# or +pnpm create next-app -- --example with-clerk with-clerk-app ``` To run the example locally you need to: diff --git a/examples/with-compiled-css/README.md b/examples/with-compiled-css/README.md index b6e2d8aed5c7..d03e28c92e52 100644 --- a/examples/with-compiled-css/README.md +++ b/examples/with-compiled-css/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-compiled-css with-compiled-css-app # or yarn create next-app --example with-compiled-css with-compiled-css-app +# or +pnpm create next-app -- --example with-compiled-css with-compiled-css-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-context-api/README.md b/examples/with-context-api/README.md index facda900d514..344d1e67fe5d 100644 --- a/examples/with-context-api/README.md +++ b/examples/with-context-api/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-context-api with-context-api-app # or yarn create next-app --example with-context-api with-context-api-app +# or +pnpm create next-app -- --example with-context-api with-context-api-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cookie-auth-fauna/README.md b/examples/with-cookie-auth-fauna/README.md index 46d0248b93f2..1557b9b5f22a 100644 --- a/examples/with-cookie-auth-fauna/README.md +++ b/examples/with-cookie-auth-fauna/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-cookie-auth-fauna with-cookie-auth-fauna-app # or yarn create next-app --example with-cookie-auth-fauna with-cookie-auth-fauna-app +# or +pnpm create next-app -- --example with-cookie-auth-fauna with-cookie-auth-fauna-app ``` ### Run locally diff --git a/examples/with-couchbase/README.md b/examples/with-couchbase/README.md index 3f4d7e84be74..f6aff20e8e94 100644 --- a/examples/with-couchbase/README.md +++ b/examples/with-couchbase/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-couchbase with-couchbase-app # or yarn create next-app --example with-couchbase with-couchbase-app +# or +pnpm create next-app -- --example with-couchbase with-couchbase-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cssed/README.md b/examples/with-cssed/README.md index 49f442215764..5e98bb33bbd9 100644 --- a/examples/with-cssed/README.md +++ b/examples/with-cssed/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-cssed with-cssed-app # or yarn create next-app --example with-cssed with-cssed-app +# or +pnpm create next-app -- --example with-cssed with-cssed-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-custom-babel-config/README.md b/examples/with-custom-babel-config/README.md index 64db98626e6f..ef98c3a822c7 100644 --- a/examples/with-custom-babel-config/README.md +++ b/examples/with-custom-babel-config/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-custom-babel-config with-custom-babel-config-app # or yarn create next-app --example with-custom-babel-config with-custom-babel-config-app +# or +pnpm create next-app -- --example with-custom-babel-config with-custom-babel-config-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cxs/README.md b/examples/with-cxs/README.md index 08ebafc68721..24e33baf3812 100644 --- a/examples/with-cxs/README.md +++ b/examples/with-cxs/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-cxs with-cxs-app # or yarn create next-app --example with-cxs with-cxs-app +# or +pnpm create next-app -- --example with-cxs with-cxs-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cypress/README.md b/examples/with-cypress/README.md index f705bcecbc14..f741c1e9cabc 100644 --- a/examples/with-cypress/README.md +++ b/examples/with-cypress/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-cypress with-cypress-app # or yarn create next-app --example with-cypress with-cypress-app +# or +pnpm create next-app -- --example with-cypress with-cypress-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-deta-base/README.md b/examples/with-deta-base/README.md index 6b7f3840d0bb..09ec62190aa5 100644 --- a/examples/with-deta-base/README.md +++ b/examples/with-deta-base/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-deta-base with-deta-base-app # or yarn create next-app --example with-deta-base with-deta-base-app +# or +pnpm create next-app -- --example with-deta-base with-deta-base-app ``` ## Configuration diff --git a/examples/with-docker-multi-env/README.md b/examples/with-docker-multi-env/README.md index 2799adfd136a..a69cec92e21a 100644 --- a/examples/with-docker-multi-env/README.md +++ b/examples/with-docker-multi-env/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-docker-multi-env nextjs-docker-multi-env # or yarn create next-app --example with-docker-multi-env nextjs-docker-multi-env +# or +pnpm create next-app -- --example with-docker-multi-env nextjs-docker-multi-env ``` Enter the values in the `.env.development.sample`, `.env.staging.sample`, `.env.production.sample` files to be used for each environments. diff --git a/examples/with-docker/README.md b/examples/with-docker/README.md index 9ece6c46559f..5d598da3cf89 100644 --- a/examples/with-docker/README.md +++ b/examples/with-docker/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-docker nextjs-docker # or yarn create next-app --example with-docker nextjs-docker +# or +pnpm create next-app -- --example with-docker nextjs-docker ``` ## Using Docker diff --git a/examples/with-draft-js/README.md b/examples/with-draft-js/README.md index bef341b7385b..10181b1aaf4a 100644 --- a/examples/with-draft-js/README.md +++ b/examples/with-draft-js/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-draft-js with-draft-js-app # or yarn create next-app --example with-draft-js with-draft-js-app +# or +pnpm create next-app -- --example with-draft-js with-draft-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-dynamic-import/README.md b/examples/with-dynamic-import/README.md index 034604c6b975..509a19dd1da0 100644 --- a/examples/with-dynamic-import/README.md +++ b/examples/with-dynamic-import/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-dynamic-import with-dynamic-import-app # or yarn create next-app --example with-dynamic-import with-dynamic-import-app +# or +pnpm create next-app -- --example with-dynamic-import with-dynamic-import-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-elasticsearch/README.md b/examples/with-elasticsearch/README.md index 27cdb88ca98f..ab09faa974d0 100644 --- a/examples/with-elasticsearch/README.md +++ b/examples/with-elasticsearch/README.md @@ -21,6 +21,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-elasticsearch with-elasticsearch-app # or yarn create next-app --example with-elasticsearch with-elasticsearch-app +# or +pnpm create next-app -- --example with-elasticsearch with-elasticsearch-app ``` ## Configuration diff --git a/examples/with-electron-typescript/README.md b/examples/with-electron-typescript/README.md index eae5cb4979c5..17a9be98edbf 100644 --- a/examples/with-electron-typescript/README.md +++ b/examples/with-electron-typescript/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-electron-typescript with-electron-typescript-app # or yarn create next-app --example with-electron-typescript with-electron-typescript-app +# or +pnpm create next-app -- --example with-electron-typescript with-electron-typescript-app ``` Available commands: diff --git a/examples/with-electron/README.md b/examples/with-electron/README.md index fd95f3d8684e..8ff6eca53461 100644 --- a/examples/with-electron/README.md +++ b/examples/with-electron/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-electron with-electron-app # or yarn create next-app --example with-electron with-electron-app +# or +pnpm create next-app -- --example with-electron with-electron-app ``` You can create the production app using `npm run dist`. diff --git a/examples/with-emotion-swc/README.md b/examples/with-emotion-swc/README.md index 12b4f677a8d0..2b5e1a0af79f 100644 --- a/examples/with-emotion-swc/README.md +++ b/examples/with-emotion-swc/README.md @@ -26,6 +26,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-emotion with-emotion-app # or yarn create next-app --example with-emotion with-emotion-app +# or +pnpm create next-app -- --example with-emotion with-emotion-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-emotion-vanilla/README.md b/examples/with-emotion-vanilla/README.md index 03a861a69598..1060eba358ea 100644 --- a/examples/with-emotion-vanilla/README.md +++ b/examples/with-emotion-vanilla/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-emotion-vanilla with-emotion-vanilla-app # or yarn create next-app --example with-emotion-vanilla with-emotion-vanilla-app +# or +pnpm create next-app -- --example with-emotion-vanilla with-emotion-vanilla-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/import?filter=next.js&utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-emotion/README.md b/examples/with-emotion/README.md index c50a3d18707f..c19b612d459c 100644 --- a/examples/with-emotion/README.md +++ b/examples/with-emotion/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-emotion with-emotion-app # or yarn create next-app --example with-emotion with-emotion-app +# or +pnpm create next-app -- --example with-emotion with-emotion-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-env-from-next-config-js/README.md b/examples/with-env-from-next-config-js/README.md index 941cc53e126e..664068030ccf 100644 --- a/examples/with-env-from-next-config-js/README.md +++ b/examples/with-env-from-next-config-js/README.md @@ -26,6 +26,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-env-from-next-config-js with-env-from-next-config-js-app # or yarn create next-app --example with-env-from-next-config-js with-env-from-next-config-js-app +# or +pnpm create next-app -- --example with-env-from-next-config-js with-env-from-next-config-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-eslint/README.md b/examples/with-eslint/README.md index 76fbeda87e6b..b8ccf59dfc9d 100644 --- a/examples/with-eslint/README.md +++ b/examples/with-eslint/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-eslint with-eslint-app # or yarn create next-app --example with-eslint with-eslint-app +# or +pnpm create next-app -- --example with-eslint with-eslint-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-expo-typescript/README.md b/examples/with-expo-typescript/README.md index 667d53bd1f5f..769512418be2 100644 --- a/examples/with-expo-typescript/README.md +++ b/examples/with-expo-typescript/README.md @@ -34,6 +34,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-expo-typescript with-expo-typescript-app # or yarn create next-app --example with-expo-typescript with-expo-typescript-app +# or +pnpm create next-app -- --example with-expo-typescript with-expo-typescript-app ``` ### Running web diff --git a/examples/with-expo/README.md b/examples/with-expo/README.md index 898131a8a640..9ee8fc34666f 100644 --- a/examples/with-expo/README.md +++ b/examples/with-expo/README.md @@ -34,6 +34,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-expo with-expo-app # or yarn create next-app --example with-expo with-expo-app +# or +pnpm create next-app -- --example with-expo with-expo-app ``` ### Running web diff --git a/examples/with-facebook-pixel/README.md b/examples/with-facebook-pixel/README.md index fbc75d0f6bde..d733c2c1a380 100644 --- a/examples/with-facebook-pixel/README.md +++ b/examples/with-facebook-pixel/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-facebook-pixel with-facebook-pixel-app # or yarn create next-app --example with-facebook-pixel with-facebook-pixel-app +# or +pnpm create next-app -- --example with-facebook-pixel with-facebook-pixel-app ``` Next, copy the `.env.local.example` file in this directory to `.env.local` (which will be ignored by Git): diff --git a/examples/with-fauna/README.md b/examples/with-fauna/README.md index aa6f8279ef9e..3fd69b217b26 100644 --- a/examples/with-fauna/README.md +++ b/examples/with-fauna/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-fauna with-fauna-app # or yarn create next-app --example with-fauna with-fauna-app +# or +pnpm create next-app -- --example with-fauna with-fauna-app ``` You can start with this template [using `create-next-app`](#using-create-next-app) or by [downloading the repository manually](#download-manually). diff --git a/examples/with-fela/README.md b/examples/with-fela/README.md index e46002f87516..9f65a4647180 100755 --- a/examples/with-fela/README.md +++ b/examples/with-fela/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-fela with-fela-app # or yarn create next-app --example with-fela with-fela-app +# or +pnpm create next-app -- --example with-fela with-fela-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-filbert/README.md b/examples/with-filbert/README.md index 63a1bf0293f5..82ffac7a3122 100644 --- a/examples/with-filbert/README.md +++ b/examples/with-filbert/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-filbert with-filbert-app # or yarn create next-app --example with-filbert with-filbert-app +# or +pnpm create next-app -- --example with-filbert with-filbert-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-firebase-cloud-messaging/README.md b/examples/with-firebase-cloud-messaging/README.md index 536a29dc7096..5b0afbe3b045 100644 --- a/examples/with-firebase-cloud-messaging/README.md +++ b/examples/with-firebase-cloud-messaging/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-firebase-cloud-messaging with-firebase-cloud-messaging-app # or yarn create next-app --example with-firebase-cloud-messaging with-firebase-cloud-messaging-app +# or +pnpm create next-app -- --example with-firebase-cloud-messaging with-firebase-cloud-messaging-app ``` ## Set your send id diff --git a/examples/with-firebase-hosting/README.md b/examples/with-firebase-hosting/README.md index b1d4dd1ce2b5..4ff5b7552b1d 100644 --- a/examples/with-firebase-hosting/README.md +++ b/examples/with-firebase-hosting/README.md @@ -21,6 +21,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-firebase-hosting with-firebase-hosting-app # or yarn create next-app --example with-firebase-hosting with-firebase-hosting-app +# or +pnpm create next-app -- --example with-firebase-hosting with-firebase-hosting-app ``` **Important:** Update `.firebaserc` and add your firebase project ID. diff --git a/examples/with-firebase/README.md b/examples/with-firebase/README.md index 21f4d46385f5..f8aee5105805 100644 --- a/examples/with-firebase/README.md +++ b/examples/with-firebase/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-firebase with-firebase-app # or yarn create next-app --example with-firebase with-firebase-app +# or +pnpm create next-app -- --example with-firebase with-firebase-app ``` ## Configuration diff --git a/examples/with-flow/README.md b/examples/with-flow/README.md index ac7ecb11aa16..6fef107b5874 100644 --- a/examples/with-flow/README.md +++ b/examples/with-flow/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-flow with-flow-app # or yarn create next-app --example with-flow with-flow-app +# or +pnpm create next-app -- --example with-flow with-flow-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-framer-motion/README.md b/examples/with-framer-motion/README.md index 9c17d58434b1..2a99020d0ed4 100644 --- a/examples/with-framer-motion/README.md +++ b/examples/with-framer-motion/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-framer-motion with-framer-motion-app # or yarn create next-app --example with-framer-motion with-framer-motion-app +# or +pnpm create next-app -- --example with-framer-motion with-framer-motion-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-goober/README.md b/examples/with-goober/README.md index d5d43b85963f..ec9c910c6f0a 100644 --- a/examples/with-goober/README.md +++ b/examples/with-goober/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-goober with-goober-app # or yarn create next-app --example with-goober with-goober-app +# or +pnpm create next-app -- --example with-goober with-goober-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-google-analytics-amp/README.md b/examples/with-google-analytics-amp/README.md index 8d7e8c6fa9c4..6b117c0a5982 100644 --- a/examples/with-google-analytics-amp/README.md +++ b/examples/with-google-analytics-amp/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-google-analytics-amp with-google-analytics-amp-app # or yarn create next-app --example with-google-analytics-amp with-google-analytics-amp-app +# or +pnpm create next-app -- --example with-google-analytics-amp with-google-analytics-amp-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-google-analytics/README.md b/examples/with-google-analytics/README.md index 95826f855e20..6c3e81e7a335 100644 --- a/examples/with-google-analytics/README.md +++ b/examples/with-google-analytics/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-google-analytics with-google-analytics-app # or yarn create next-app --example with-google-analytics with-google-analytics-app +# or +pnpm create next-app -- --example with-google-analytics with-google-analytics-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-google-tag-manager/README.md b/examples/with-google-tag-manager/README.md index a0a459140d90..3c9dd9381f4b 100644 --- a/examples/with-google-tag-manager/README.md +++ b/examples/with-google-tag-manager/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-google-tag-manager with-google-tag-manager-app # or yarn create next-app --example with-google-tag-manager with-google-tag-manager-app +# or +pnpm create next-app -- --example with-google-tag-manager with-google-tag-manager-app ``` Next, copy the `.env.local.example` file in this directory to `.env.local` (which will be ignored by Git): diff --git a/examples/with-graphql-hooks/README.md b/examples/with-graphql-hooks/README.md index 546696c9056d..2cba7f7045b3 100644 --- a/examples/with-graphql-hooks/README.md +++ b/examples/with-graphql-hooks/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-graphql-hooks with-graphql-hooks-app # or yarn create next-app --example with-graphql-hooks with-graphql-hooks-app +# or +pnpm create next-app -- --example with-graphql-hooks with-graphql-hooks-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-graphql-react/README.md b/examples/with-graphql-react/README.md index c7b083091663..ac68f2a7e3fb 100644 --- a/examples/with-graphql-react/README.md +++ b/examples/with-graphql-react/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-graphql-react with-graphql-react-app # or yarn create next-app --example with-graphql-react with-graphql-react-app +# or +pnpm create next-app -- --example with-graphql-react with-graphql-react-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-grommet/README.md b/examples/with-grommet/README.md index a6d7c8e9ed1b..84ad5e5fbb6d 100644 --- a/examples/with-grommet/README.md +++ b/examples/with-grommet/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-grommet with-grommet-app # or yarn create next-app --example with-grommet with-grommet-app +# or +pnpm create next-app -- --example with-grommet with-grommet-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-gsap/README.md b/examples/with-gsap/README.md index e2b3d7111517..6a27b68efad3 100644 --- a/examples/with-gsap/README.md +++ b/examples/with-gsap/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-gsap with-gsap-app # or yarn create next-app --example with-gsap with-gsap-app +# or +pnpm create next-app -- --example with-gsap with-gsap-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-hls-js/README.md b/examples/with-hls-js/README.md index 5a788f1f10e8..8bc36ffaa82e 100644 --- a/examples/with-hls-js/README.md +++ b/examples/with-hls-js/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-hls-js with-hls-js-app # or yarn create next-app --example with-hls-js with-hls-js-app +# or +pnpm create next-app -- --example with-hls-js with-hls-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-http2/README.md b/examples/with-http2/README.md index 5331c76f3f26..d6aeb5e33d26 100644 --- a/examples/with-http2/README.md +++ b/examples/with-http2/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-http2 with-http2-app # or yarn create next-app --example with-http2 with-http2-app +# or +pnpm create next-app -- --example with-http2 with-http2-app ``` Create the public and private keys: diff --git a/examples/with-i18n-next-intl/README.md b/examples/with-i18n-next-intl/README.md index 9d9096f756dd..dbf46e6816b1 100644 --- a/examples/with-i18n-next-intl/README.md +++ b/examples/with-i18n-next-intl/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-i18n-next-intl # or yarn create next-app --example with-i18n-next-intl +# or +pnpm create next-app -- --example with-i18n-next-intl ``` Deploy it to the cloud with [Vercel](https://vercel.com/import?filter=next.js&utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-i18n-rosetta/README.md b/examples/with-i18n-rosetta/README.md index 42305d0c5e2a..26f375c0a7be 100644 --- a/examples/with-i18n-rosetta/README.md +++ b/examples/with-i18n-rosetta/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-i18n-rosetta with-i18n-rosetta-app # or yarn create next-app --example with-i18n-rosetta with-i18n-rosetta-app +# or +pnpm create next-app -- --example with-i18n-rosetta with-i18n-rosetta-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-ionic-typescript/README.md b/examples/with-ionic-typescript/README.md index 89eb811be784..fd417d39dd8c 100644 --- a/examples/with-ionic-typescript/README.md +++ b/examples/with-ionic-typescript/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-ionic-typescript with-ionic-typescript-app # or yarn create next-app --example with-ionic-typescript with-ionic-typescript-app +# or +pnpm create next-app -- --example with-ionic-typescript with-ionic-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-iron-session/README.md b/examples/with-iron-session/README.md index 736dab0735d8..477f8da13b9d 100644 --- a/examples/with-iron-session/README.md +++ b/examples/with-iron-session/README.md @@ -35,6 +35,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-iron-session with-iron-session-app # or yarn create next-app --example with-iron-session with-iron-session-app +# or +pnpm create next-app -- --example with-iron-session with-iron-session-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-jest-babel/README.md b/examples/with-jest-babel/README.md index 3bff54450932..10b08f01a05a 100644 --- a/examples/with-jest-babel/README.md +++ b/examples/with-jest-babel/README.md @@ -14,6 +14,8 @@ In your terminal, run the following command: npx create-next-app --example with-jest with-jest-app # or yarn create next-app --example with-jest with-jest-app +# or +pnpm create next-app -- --example with-jest with-jest-app ``` ## Run Jest Tests diff --git a/examples/with-jest/README.md b/examples/with-jest/README.md index ab9de62830f4..62981938146f 100644 --- a/examples/with-jest/README.md +++ b/examples/with-jest/README.md @@ -14,6 +14,8 @@ In your terminal, run the following command: npx create-next-app --example with-jest with-jest-app # or yarn create next-app --example with-jest with-jest-app +# or +pnpm create next-app -- --example with-jest with-jest-app ``` ## Run Jest Tests diff --git a/examples/with-joi/README.md b/examples/with-joi/README.md index 49ea16a0af00..d546dfbdf203 100644 --- a/examples/with-joi/README.md +++ b/examples/with-joi/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-joi with-joi-app # or yarn create next-app --example with-joi with-joi-app +# or +pnpm create next-app -- --example with-joi with-joi-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-jotai/README.md b/examples/with-jotai/README.md index 35591ce36785..334373c0c487 100644 --- a/examples/with-jotai/README.md +++ b/examples/with-jotai/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-jotai with-jotai-app # or yarn create next-app --example with-jotai with-jotai-app +# or +pnpm create next-app -- --example with-jotai with-jotai-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-kea/README.md b/examples/with-kea/README.md index 09fcacaca00f..60a420c31ab1 100644 --- a/examples/with-kea/README.md +++ b/examples/with-kea/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-kea with-kea-app # or yarn create next-app --example with-kea with-kea-app +# or +pnpm create next-app -- --example with-kea with-kea-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-knex/README.md b/examples/with-knex/README.md index acc64f50cf83..31c6d55b2d24 100644 --- a/examples/with-knex/README.md +++ b/examples/with-knex/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-knex with-knex-app # or yarn create next-app --example with-knex with-knex-app +# or +pnpm create next-app -- --example with-knex with-knex-app ``` ## Configuration diff --git a/examples/with-linaria/README.md b/examples/with-linaria/README.md index c22f9acf39df..cf8de7d3f5cd 100644 --- a/examples/with-linaria/README.md +++ b/examples/with-linaria/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-linaria with-linaria-app # or yarn create next-app --example with-linaria with-linaria-app +# or +pnpm create next-app -- --example with-linaria with-linaria-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-lingui/README.md b/examples/with-lingui/README.md index 86b1b4bb0635..6dc2bbbab1b9 100644 --- a/examples/with-lingui/README.md +++ b/examples/with-lingui/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-lingui with-lingui-app # or yarn create next-app --example with-lingui with-lingui-app +# or +pnpm create next-app -- --example with-lingui with-lingui-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-loading/README.md b/examples/with-loading/README.md index 6083df2b7c69..b8c0bb2f4147 100644 --- a/examples/with-loading/README.md +++ b/examples/with-loading/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-loading with-loading-app # or yarn create next-app --example with-loading with-loading-app +# or +pnpm create next-app -- --example with-loading with-loading-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-magic/README.md b/examples/with-magic/README.md index 368015fcbba4..728abfaac421 100644 --- a/examples/with-magic/README.md +++ b/examples/with-magic/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-magic with-magic-app # or yarn create next-app --example with-magic with-magic-app +# or +pnpm create next-app -- --example with-magic with-magic-app ``` ## Configuration diff --git a/examples/with-mdbreact/README.md b/examples/with-mdbreact/README.md index e20ab1301bbe..ac3c720465e8 100644 --- a/examples/with-mdbreact/README.md +++ b/examples/with-mdbreact/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mdbreact with-mdbreact-app # or yarn create next-app --example with-mdbreact with-mdbreact-app +# or +pnpm create next-app -- --example with-mdbreact with-mdbreact-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mdx-remote/README.md b/examples/with-mdx-remote/README.md index 8c08583dfb38..c1e8fa50049b 100644 --- a/examples/with-mdx-remote/README.md +++ b/examples/with-mdx-remote/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mdx-remote with-mdx-remote-app # or yarn create next-app --example with-mdx-remote with-mdx-remote-app +# or +pnpm create next-app -- --example with-mdx-remote with-mdx-remote-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mdx/README.md b/examples/with-mdx/README.md index 875d737c37c9..b3f9f7cf0c3c 100644 --- a/examples/with-mdx/README.md +++ b/examples/with-mdx/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mdx with-mdx-app # or yarn create next-app --example with-mdx with-mdx-app +# or +pnpm create next-app -- --example with-mdx with-mdx-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mobx-react-lite/README.md b/examples/with-mobx-react-lite/README.md index 53ef87536840..e7aa97ac23f2 100644 --- a/examples/with-mobx-react-lite/README.md +++ b/examples/with-mobx-react-lite/README.md @@ -30,6 +30,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mobx-react-lite with-mobx-react-lite-app # or yarn create next-app --example with-mobx-react-lite with-mobx-react-lite-app +# or +pnpm create next-app -- --example with-mobx-react-lite with-mobx-react-lite-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mobx-state-tree-typescript/README.md b/examples/with-mobx-state-tree-typescript/README.md index 190d8bda662b..80f7c87e0f56 100644 --- a/examples/with-mobx-state-tree-typescript/README.md +++ b/examples/with-mobx-state-tree-typescript/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mobx-state-tree-typescript with-mobx-state-tree-typescript-app # or yarn create next-app --example with-mobx-state-tree-typescript with-mobx-state-tree-typescript-app +# or +pnpm create next-app -- --example with-mobx-state-tree-typescript with-mobx-state-tree-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mobx-state-tree/README.md b/examples/with-mobx-state-tree/README.md index 6dd278a6d9c0..c0e710516efa 100644 --- a/examples/with-mobx-state-tree/README.md +++ b/examples/with-mobx-state-tree/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mobx-state-tree with-mobx-state-tree-app # or yarn create next-app --example with-mobx-state-tree with-mobx-state-tree-app +# or +pnpm create next-app -- --example with-mobx-state-tree with-mobx-state-tree-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mobx/README.md b/examples/with-mobx/README.md index d6fa366398e3..cf99b28e4aed 100644 --- a/examples/with-mobx/README.md +++ b/examples/with-mobx/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mobx with-mobx-app # or yarn create next-app --example with-mobx with-mobx-app +# or +pnpm create next-app -- --example with-mobx with-mobx-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mocha/README.md b/examples/with-mocha/README.md index 666e9e9e9145..a741c9fc21de 100644 --- a/examples/with-mocha/README.md +++ b/examples/with-mocha/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mocha with-mocha-app # or yarn create next-app --example with-mocha with-mocha-app +# or +pnpm create next-app -- --example with-mocha with-mocha-app ``` ## Run Mocha tests diff --git a/examples/with-mongodb-mongoose/README.md b/examples/with-mongodb-mongoose/README.md index 1c96e6751b67..addcd7382684 100644 --- a/examples/with-mongodb-mongoose/README.md +++ b/examples/with-mongodb-mongoose/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mongodb-mongoose with-mongodb-mongoose-app # or yarn create next-app --example with-mongodb-mongoose with-mongodb-mongoose-app +# or +pnpm create next-app -- --example with-mongodb-mongoose with-mongodb-mongoose-app ``` ## Configuration diff --git a/examples/with-mongodb/README.md b/examples/with-mongodb/README.md index 12db73e8f41f..290474dae521 100644 --- a/examples/with-mongodb/README.md +++ b/examples/with-mongodb/README.md @@ -21,6 +21,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mongodb with-mongodb-app # or yarn create next-app --example with-mongodb with-mongodb-app +# or +pnpm create next-app -- --example with-mongodb with-mongodb-app ``` ## Configuration diff --git a/examples/with-msw/README.md b/examples/with-msw/README.md index dd13738eac59..e97689b7b8bf 100644 --- a/examples/with-msw/README.md +++ b/examples/with-msw/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-msw with-msw-app # or yarn create next-app --example with-msw with-msw-app +# or +pnpm create next-app -- --example with-msw with-msw-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mux-video/README.md b/examples/with-mux-video/README.md index d06882d9d4e7..7386ef604a21 100644 --- a/examples/with-mux-video/README.md +++ b/examples/with-mux-video/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mux-video with-mux-video-app # or yarn create next-app --example with-mux-video with-mux-video-app +# or +pnpm create next-app -- --example with-mux-video with-mux-video-app ``` ## Note diff --git a/examples/with-mysql/README.md b/examples/with-mysql/README.md index a853b6584dea..a6aace78813c 100644 --- a/examples/with-mysql/README.md +++ b/examples/with-mysql/README.md @@ -34,6 +34,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mysql nextjs-mysql # or yarn create next-app --example with-mysql nextjs-mysql +# or +pnpm create next-app -- --example with-mysql nextjs-mysql ``` Next, you'll need to create a database username and password through the CLI to connect to your application. If you'd prefer to use the dashboard for this step, you can find those instructions in the [Connection Strings documentation](https://docs.planetscale.com/concepts/connection-strings#creating-a-password) and then come back here to finish setup. diff --git a/examples/with-neo4j/README.md b/examples/with-neo4j/README.md index 8f139a09e5f4..3d7598a0643f 100644 --- a/examples/with-neo4j/README.md +++ b/examples/with-neo4j/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-neo4j with-neo4j-app # or yarn create next-app --example with-neo4j with-neo4j-app +# or +pnpm create next-app -- --example with-neo4j with-neo4j-app ``` ## Configuration diff --git a/examples/with-netlify-cms/README.md b/examples/with-netlify-cms/README.md index 84ad44c143aa..22e3aa278345 100644 --- a/examples/with-netlify-cms/README.md +++ b/examples/with-netlify-cms/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-netlify-cms with-netlify-cms-app # or yarn create next-app --example with-netlify-cms with-netlify-cms-app +# or +pnpm create next-app -- --example with-netlify-cms with-netlify-cms-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-css/README.md b/examples/with-next-css/README.md index 1fa6387c7a99..94560c562f89 100644 --- a/examples/with-next-css/README.md +++ b/examples/with-next-css/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-next-css with-next-css-app # or yarn create next-app --example with-next-css with-next-css-app +# or +pnpm create next-app -- --example with-next-css with-next-css-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-offline/README.md b/examples/with-next-offline/README.md index 26cabeee05fd..8a35df062484 100644 --- a/examples/with-next-offline/README.md +++ b/examples/with-next-offline/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-next-offline with-next-offline-app # or yarn create next-app --example with-next-offline with-next-offline-app +# or +pnpm create next-app -- --example with-next-offline with-next-offline-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-page-transitions/README.md b/examples/with-next-page-transitions/README.md index aa1c65309250..660b5427afaa 100644 --- a/examples/with-next-page-transitions/README.md +++ b/examples/with-next-page-transitions/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-next-page-transitions with-next-page-transitions-app # or yarn create next-app --example with-next-page-transitions with-next-page-transitions-app +# or +pnpm create next-app -- --example with-next-page-transitions with-next-page-transitions-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-sass/README.md b/examples/with-next-sass/README.md index 1d690c2f1170..a5486606a80e 100644 --- a/examples/with-next-sass/README.md +++ b/examples/with-next-sass/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-next-sass with-next-sass-app # or yarn create next-app --example with-next-sass with-next-sass-app +# or +pnpm create next-app -- --example with-next-sass with-next-sass-app ``` Run production build with: diff --git a/examples/with-next-seo/README.md b/examples/with-next-seo/README.md index 1e7749bfe952..d68ff1dfbe02 100644 --- a/examples/with-next-seo/README.md +++ b/examples/with-next-seo/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-next-seo next-seo-app # or yarn create next-app --example with-next-seo next-seo-app +# or +pnpm create next-app -- --example with-next-seo next-seo-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-sitemap/README.md b/examples/with-next-sitemap/README.md index b1f67ee1d997..8ed74addb28d 100644 --- a/examples/with-next-sitemap/README.md +++ b/examples/with-next-sitemap/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-next-sitemap with-next-sitemap-app # or yarn create next-app --example with-next-sitemap with-next-sitemap-app +# or +pnpm create next-app -- --example with-next-sitemap with-next-sitemap-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-translate/README.md b/examples/with-next-translate/README.md index cd713a5f57c3..2d0b583c1f60 100644 --- a/examples/with-next-translate/README.md +++ b/examples/with-next-translate/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-next-translate with-next-translate-app # or yarn create next-app --example with-next-translate with-next-translate-app +# or +pnpm create next-app -- --example with-next-translate with-next-translate-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-nhost-auth-realtime-graphql/README.md b/examples/with-nhost-auth-realtime-graphql/README.md index 428b5a3c30eb..be41ce5a091d 100644 --- a/examples/with-nhost-auth-realtime-graphql/README.md +++ b/examples/with-nhost-auth-realtime-graphql/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-nhost-auth-realtime-graphql nhost-app # or yarn create next-app --example with-nhost-auth-realtime-graphql nhost-app +# or +pnpm create next-app -- --example with-nhost-auth-realtime-graphql nhost-app ``` ## Configuration diff --git a/examples/with-orbit-components/README.md b/examples/with-orbit-components/README.md index f4d80ea565c2..6bef308c9f8e 100644 --- a/examples/with-orbit-components/README.md +++ b/examples/with-orbit-components/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-orbit-components with-orbit-components-app # or yarn create next-app --example with-orbit-components with-orbit-components-app +# or +pnpm create next-app -- --example with-orbit-components with-orbit-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-overmind/README.md b/examples/with-overmind/README.md index afe4f0714d2a..f7223b17a362 100644 --- a/examples/with-overmind/README.md +++ b/examples/with-overmind/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-overmind with-overmind-app # or yarn create next-app --example with-overmind with-overmind-app +# or +pnpm create next-app -- --example with-overmind with-overmind-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-passport-and-next-connect/README.md b/examples/with-passport-and-next-connect/README.md index b3bf43872a68..8583b4bee630 100644 --- a/examples/with-passport-and-next-connect/README.md +++ b/examples/with-passport-and-next-connect/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-passport-and-next-connect with-passport-and-next-connect-app # or yarn create next-app --example with-passport-and-next-connect with-passport-and-next-connect-app +# or +pnpm create next-app -- --example with-passport-and-next-connect with-passport-and-next-connect-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-passport/README.md b/examples/with-passport/README.md index 4032d0f89f8f..a3a041df886d 100644 --- a/examples/with-passport/README.md +++ b/examples/with-passport/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-passport with-passport-app # or yarn create next-app --example with-passport with-passport-app +# or +pnpm create next-app -- --example with-passport with-passport-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-paste-typescript/README.md b/examples/with-paste-typescript/README.md index 3c91dd7bd0fe..dff5e4a3485f 100644 --- a/examples/with-paste-typescript/README.md +++ b/examples/with-paste-typescript/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-paste-typescript with-paste-typescript-app # or yarn create next-app --example with-paste-typescript with-paste-typescript-app +# or +pnpm create next-app -- --example with-paste-typescript with-paste-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-patternfly/README.md b/examples/with-patternfly/README.md index bf981bb4cd08..445898ba709a 100644 --- a/examples/with-patternfly/README.md +++ b/examples/with-patternfly/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-patternfly with-patternfly-app # or yarn create next-app --example with-patternfly with-patternfly-app +# or +pnpm create next-app -- --example with-patternfly with-patternfly-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-plausible/README.md b/examples/with-plausible/README.md index c3ac2dd69d37..534a0a825b7d 100644 --- a/examples/with-plausible/README.md +++ b/examples/with-plausible/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-plausible with-plausible-app # or yarn create next-app --example with-plausible with-plausible-app +# or +pnpm create next-app -- --example with-plausible with-plausible-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-playwright/README.md b/examples/with-playwright/README.md index 601b36a445bc..9b9ea483c0bf 100644 --- a/examples/with-playwright/README.md +++ b/examples/with-playwright/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-playwright with-playwright-app # or yarn create next-app --example with-playwright with-playwright-app +# or +pnpm create next-app -- --example with-playwright with-playwright-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-polyfills/README.md b/examples/with-polyfills/README.md index 699b031fe47d..8e6e9eab980b 100644 --- a/examples/with-polyfills/README.md +++ b/examples/with-polyfills/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-polyfills with-polyfills-app # or yarn create next-app --example with-polyfills with-polyfills-app +# or +pnpm create next-app -- --example with-polyfills with-polyfills-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-portals-ssr/README.md b/examples/with-portals-ssr/README.md index b6b708fb9a6a..9b931f5fb6b9 100644 --- a/examples/with-portals-ssr/README.md +++ b/examples/with-portals-ssr/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-portals-ssr with-portals-ssr-app # or yarn create next-app --example with-portals-ssr with-portals-ssr-app +# or +pnpm create next-app -- --example with-portals-ssr with-portals-ssr-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-portals/README.md b/examples/with-portals/README.md index 523af234ac42..468bcf122cb3 100644 --- a/examples/with-portals/README.md +++ b/examples/with-portals/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-portals with-portals-app # or yarn create next-app --example with-portals with-portals-app +# or +pnpm create next-app -- --example with-portals with-portals-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-prefetching/README.md b/examples/with-prefetching/README.md index 8828bb34b570..52d2b587d909 100644 --- a/examples/with-prefetching/README.md +++ b/examples/with-prefetching/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-prefetching with-prefetching-app # or yarn create next-app --example with-prefetching with-prefetching-app +# or +pnpm create next-app -- --example with-prefetching with-prefetching-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-quill-js/README.md b/examples/with-quill-js/README.md index 0e503eca00a6..e5cde9b551fc 100644 --- a/examples/with-quill-js/README.md +++ b/examples/with-quill-js/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-quill-js with-quill-js-app # or yarn create next-app --example with-quill-js with-quill-js-app +# or +pnpm create next-app -- --example with-quill-js with-quill-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-rbx-bulma-pro/README.md b/examples/with-rbx-bulma-pro/README.md index 86669b5a5642..58cb1a2e6ef4 100644 --- a/examples/with-rbx-bulma-pro/README.md +++ b/examples/with-rbx-bulma-pro/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-rbx-bulma-pro with-rbx-bulma-pro-app # or yarn create next-app --example with-rbx-bulma-pro with-rbx-bulma-pro-app +# or +pnpm create next-app -- --example with-rbx-bulma-pro with-rbx-bulma-pro-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-bootstrap/README.md b/examples/with-react-bootstrap/README.md index a0be63517161..35df2ad911fc 100644 --- a/examples/with-react-bootstrap/README.md +++ b/examples/with-react-bootstrap/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-bootstrap with-react-bootstrap-app # or yarn create next-app --example with-react-bootstrap with-react-bootstrap-app +# or +pnpm create next-app -- --example with-react-bootstrap with-react-bootstrap-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-ga/README.md b/examples/with-react-ga/README.md index 11c37b302f0a..7c8108ff3faf 100644 --- a/examples/with-react-ga/README.md +++ b/examples/with-react-ga/README.md @@ -17,6 +17,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-ga with-react-ga-app # or yarn create next-app --example with-react-ga with-react-ga-app +# or +pnpm create next-app -- --example with-react-ga with-react-ga-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-helmet/README.md b/examples/with-react-helmet/README.md index ef917b2fe7a1..117eccc71895 100644 --- a/examples/with-react-helmet/README.md +++ b/examples/with-react-helmet/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-helmet with-react-helmet-app # or yarn create next-app --example with-react-helmet with-react-helmet-app +# or +pnpm create next-app -- --example with-react-helmet with-react-helmet-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-hook-form/README.md b/examples/with-react-hook-form/README.md index d25c2c411aee..ce096b4340d5 100644 --- a/examples/with-react-hook-form/README.md +++ b/examples/with-react-hook-form/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-hook-form with-react-hook-form-app # or yarn create next-app --example with-react-hook-form with-react-hook-form-app +# or +pnpm create next-app -- --example with-react-hook-form with-react-hook-form-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-intl/README.md b/examples/with-react-intl/README.md index 7706ac9164e3..fa3f3120b866 100644 --- a/examples/with-react-intl/README.md +++ b/examples/with-react-intl/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-intl with-react-intl-app # or yarn create next-app --example with-react-intl with-react-intl-app +# or +pnpm create next-app -- --example with-react-intl with-react-intl-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-jss/README.md b/examples/with-react-jss/README.md index 3e90f3546e3c..a8999954f33b 100644 --- a/examples/with-react-jss/README.md +++ b/examples/with-react-jss/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-jss with-react-jss-app # or yarn create next-app --example with-react-jss with-react-jss-app +# or +pnpm create next-app -- --example with-react-jss with-react-jss-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-md-typescript/README.md b/examples/with-react-md-typescript/README.md index 199156bec569..3d0a5642ab89 100644 --- a/examples/with-react-md-typescript/README.md +++ b/examples/with-react-md-typescript/README.md @@ -31,6 +31,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-md-typescript with-react-md-typescript-app # or yarn create next-app --example with-react-md-typescript with-react-md-typescript-app +# or +pnpm create next-app -- --example with-react-md-typescript with-react-md-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-md/README.md b/examples/with-react-md/README.md index b00ac6fb9f98..624fc2662f49 100644 --- a/examples/with-react-md/README.md +++ b/examples/with-react-md/README.md @@ -32,6 +32,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-md with-react-md-app # or yarn create next-app --example with-react-md with-react-md-app +# or +pnpm create next-app -- --example with-react-md with-react-md-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-multi-carousel/README.md b/examples/with-react-multi-carousel/README.md index 18dcf7945f56..977b5083730e 100644 --- a/examples/with-react-multi-carousel/README.md +++ b/examples/with-react-multi-carousel/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-multi-carousel with-react-multi-carousel-app # or yarn create next-app --example with-react-multi-carousel with-react-multi-carousel-app +# or +pnpm create next-app -- --example with-react-multi-carousel with-react-multi-carousel-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-native-web/README.md b/examples/with-react-native-web/README.md index 262e18348b28..71e7b26cc7c3 100644 --- a/examples/with-react-native-web/README.md +++ b/examples/with-react-native-web/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-native-web with-react-native-web-app # or yarn create next-app --example with-react-native-web with-react-native-web-app +# or +pnpm create next-app -- --example with-react-native-web with-react-native-web-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-toolbox/README.md b/examples/with-react-toolbox/README.md index 1625bc56bd1f..dc72446365d9 100644 --- a/examples/with-react-toolbox/README.md +++ b/examples/with-react-toolbox/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-toolbox with-react-toolbox-app # or yarn create next-app --example with-react-toolbox with-react-toolbox-app +# or +pnpm create next-app -- --example with-react-toolbox with-react-toolbox-app ``` Notice that `yarn toolbox` (or `npm run toolbox`) should be rerun every time the `"reactToolbox"` configuration in `package.json` is changed, in order to update `/theme.js` and `public/theme.css`. The `"reactToolbox"` configuration includes styling, and the list of react-toolbox components to include. diff --git a/examples/with-react-with-styles/README.md b/examples/with-react-with-styles/README.md index 033ff003863a..5046c16a1f1d 100644 --- a/examples/with-react-with-styles/README.md +++ b/examples/with-react-with-styles/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-with-styles with-react-with-styles-app # or yarn create next-app --example with-react-with-styles with-react-with-styles-app +# or +pnpm create next-app -- --example with-react-with-styles with-react-with-styles-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reactstrap/README.md b/examples/with-reactstrap/README.md index 756f022a2b4c..30f72ad5808f 100644 --- a/examples/with-reactstrap/README.md +++ b/examples/with-reactstrap/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-reactstrap with-reactstrap-app # or yarn create next-app --example with-reactstrap with-reactstrap-app +# or +pnpm create next-app -- --example with-reactstrap with-reactstrap-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-realm-web/README.md b/examples/with-realm-web/README.md index 61339859606a..d6bc913128bf 100644 --- a/examples/with-realm-web/README.md +++ b/examples/with-realm-web/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-realm-web with-realm-web-app # or yarn create next-app --example with-realm-web with-realm-web-app +# or +pnpm create next-app -- --example with-realm-web with-realm-web-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reason-relay/README.md b/examples/with-reason-relay/README.md index 0a0a464ca033..5acce16d18a3 100644 --- a/examples/with-reason-relay/README.md +++ b/examples/with-reason-relay/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-reason-relay with-reason-relay-app # or yarn create next-app --example with-reason-relay with-reason-relay-app +# or +pnpm create next-app -- --example with-reason-relay with-reason-relay-app ``` Download schema introspection data from configured Relay endpoint: diff --git a/examples/with-reasonml-todo/README.md b/examples/with-reasonml-todo/README.md index a7aa61234949..4c84936fcf48 100644 --- a/examples/with-reasonml-todo/README.md +++ b/examples/with-reasonml-todo/README.md @@ -28,6 +28,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-reasonml-todo with-reasonml-app # or yarn create next-app --example with-reasonml-todo with-reasonml-app +# or +pnpm create next-app -- --example with-reasonml-todo with-reasonml-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reasonml/README.md b/examples/with-reasonml/README.md index bab95e3447e6..6b06a079790c 100644 --- a/examples/with-reasonml/README.md +++ b/examples/with-reasonml/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-reasonml with-reasonml-app # or yarn create next-app --example with-reasonml with-reasonml-app +# or +pnpm create next-app -- --example with-reasonml with-reasonml-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-rebass/README.md b/examples/with-rebass/README.md index 2c6cbe76b2d6..bc63b388223b 100644 --- a/examples/with-rebass/README.md +++ b/examples/with-rebass/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-rebass with-rebass-app # or yarn create next-app --example with-rebass with-rebass-app +# or +pnpm create next-app -- --example with-rebass with-rebass-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-recoil/README.md b/examples/with-recoil/README.md index ddf6edb81c30..d3964fae013a 100644 --- a/examples/with-recoil/README.md +++ b/examples/with-recoil/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-recoil with-recoil-app # or yarn create next-app --example with-recoil with-recoil-app +# or +pnpm create next-app -- --example with-recoil with-recoil-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redis/README.md b/examples/with-redis/README.md index f5668ad4c85b..faed3edbf3e1 100644 --- a/examples/with-redis/README.md +++ b/examples/with-redis/README.md @@ -27,6 +27,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-redis roadmap # or yarn create next-app --example with-redis roadmap +# or +pnpm create next-app -- --example with-redis roadmap ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-observable/README.md b/examples/with-redux-observable/README.md index 37b15dab8aa1..06a479ce77b7 100644 --- a/examples/with-redux-observable/README.md +++ b/examples/with-redux-observable/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-redux-observable with-redux-observable-app # or yarn create next-app --example with-redux-observable with-redux-observable-app +# or +pnpm create next-app -- --example with-redux-observable with-redux-observable-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-persist/README.md b/examples/with-redux-persist/README.md index 4902b7ce25f8..62c11c732025 100644 --- a/examples/with-redux-persist/README.md +++ b/examples/with-redux-persist/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-redux-persist with-redux-persist-app # or yarn create next-app --example with-redux-persist with-redux-persist-app +# or +pnpm create next-app -- --example with-redux-persist with-redux-persist-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-saga/README.md b/examples/with-redux-saga/README.md index 9dcf5c50d49f..8ce85bd69031 100644 --- a/examples/with-redux-saga/README.md +++ b/examples/with-redux-saga/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-redux-saga with-redux-saga-app # or yarn create next-app --example with-redux-saga with-redux-saga-app +# or +pnpm create next-app -- --example with-redux-saga with-redux-saga-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-thunk/README.md b/examples/with-redux-thunk/README.md index e035510d37fd..79f34b3fc68a 100644 --- a/examples/with-redux-thunk/README.md +++ b/examples/with-redux-thunk/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-redux-thunk with-redux-thunk-app # or yarn create next-app --example with-redux-thunk with-redux-thunk-app +# or +pnpm create next-app -- --example with-redux-thunk with-redux-thunk-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-wrapper/README.md b/examples/with-redux-wrapper/README.md index d2d2e91735b6..654a2861d3d8 100644 --- a/examples/with-redux-wrapper/README.md +++ b/examples/with-redux-wrapper/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-redux-wrapper with-redux-wrapper-app # or yarn create next-app --example with-redux-wrapper with-redux-wrapper-app +# or +pnpm create next-app -- --example with-redux-wrapper with-redux-wrapper-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux/README.md b/examples/with-redux/README.md index b25fa6e8435c..fd59309b7227 100644 --- a/examples/with-redux/README.md +++ b/examples/with-redux/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-redux with-redux-app # or yarn create next-app --example with-redux with-redux-app +# or +pnpm create next-app -- --example with-redux with-redux-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reflexjs/README.md b/examples/with-reflexjs/README.md index 016074c36571..22eb622a836f 100644 --- a/examples/with-reflexjs/README.md +++ b/examples/with-reflexjs/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-reflexjs with-reflexjs-app # or yarn create next-app --example with-reflexjs with-reflexjs-app +# or +pnpm create next-app -- --example with-reflexjs with-reflexjs-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reflux/README.md b/examples/with-reflux/README.md index f449f3a3e726..ca221baf22da 100644 --- a/examples/with-reflux/README.md +++ b/examples/with-reflux/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-reflux with-reflux-app # or yarn create next-app --example with-reflux with-reflux-app +# or +pnpm create next-app -- --example with-reflux with-reflux-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-relay-modern/README.md b/examples/with-relay-modern/README.md index 4f95a7bbe5ae..de8766b95794 100644 --- a/examples/with-relay-modern/README.md +++ b/examples/with-relay-modern/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-relay-modern with-relay-modern-app # or yarn create next-app --example with-relay-modern with-relay-modern-app +# or +pnpm create next-app -- --example with-relay-modern with-relay-modern-app ``` Download schema introspection data from configured Relay endpoint diff --git a/examples/with-rematch/README.md b/examples/with-rematch/README.md index 5a0165eba15b..809ab409e05d 100644 --- a/examples/with-rematch/README.md +++ b/examples/with-rematch/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-rematch with-rematch-app # or yarn create next-app --example with-rematch with-rematch-app +# or +pnpm create next-app -- --example with-rematch with-rematch-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-route-as-modal/README.md b/examples/with-route-as-modal/README.md index 4e85a397a530..0050d6ddb5fa 100644 --- a/examples/with-route-as-modal/README.md +++ b/examples/with-route-as-modal/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-route-as-modal with-route-as-modal-app # or yarn create next-app --example with-route-as-modal with-route-as-modal-app +# or +pnpm create next-app -- --example with-route-as-modal with-route-as-modal-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-segment-analytics/README.md b/examples/with-segment-analytics/README.md index 481f3981474c..4305b144a421 100644 --- a/examples/with-segment-analytics/README.md +++ b/examples/with-segment-analytics/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-segment-analytics with-segment-analytics-app # or yarn create next-app --example with-segment-analytics with-segment-analytics-app +# or +pnpm create next-app -- --example with-segment-analytics with-segment-analytics-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-semantic-ui/README.md b/examples/with-semantic-ui/README.md index 1c054059c8e9..a102c3c8f19e 100644 --- a/examples/with-semantic-ui/README.md +++ b/examples/with-semantic-ui/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-semantic-ui with-semantic-ui-app # or yarn create next-app --example with-semantic-ui with-semantic-ui-app +# or +pnpm create next-app -- --example with-semantic-ui with-semantic-ui-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-sentry/README.md b/examples/with-sentry/README.md index 1372909a5add..65a98e4200bf 100644 --- a/examples/with-sentry/README.md +++ b/examples/with-sentry/README.md @@ -39,6 +39,8 @@ To begin, execute [`create-next-app`](https://github.com/vercel/next.js/tree/can npx create-next-app --example with-sentry nextjs-sentry-example # or yarn create next-app --example with-sentry nextjs-sentry-example +# or +pnpm create next-app -- --example with-sentry nextjs-sentry-example ``` Next, run [`sentry-wizard`](https://docs.sentry.io/platforms/javascript/guides/nextjs/#configure), which will create and populate the settings files needed by `@sentry/nextjs` to initialize the SDK and upload source maps to Sentry: diff --git a/examples/with-service-worker/README.md b/examples/with-service-worker/README.md index af05928b51d2..65bd4f27f256 100644 --- a/examples/with-service-worker/README.md +++ b/examples/with-service-worker/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-service-worker with-service-worker-app # or yarn create next-app --example with-service-worker with-service-worker-app +# or +pnpm create next-app -- --example with-service-worker with-service-worker-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-shallow-routing/README.md b/examples/with-shallow-routing/README.md index 25b884fcbcb8..77fd49e33b8d 100644 --- a/examples/with-shallow-routing/README.md +++ b/examples/with-shallow-routing/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-shallow-routing with-shallow-routing-app # or yarn create next-app --example with-shallow-routing with-shallow-routing-app +# or +pnpm create next-app -- --example with-shallow-routing with-shallow-routing-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-sitemap/README.md b/examples/with-sitemap/README.md index f64c53678f55..a7c90d8a2a16 100644 --- a/examples/with-sitemap/README.md +++ b/examples/with-sitemap/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-sitemap with-sitemap-app # or yarn create next-app --example with-sitemap with-sitemap-app +# or +pnpm create next-app -- --example with-sitemap with-sitemap-app ``` Your app should be up and running on [http://localhost:3000](http://localhost:3000) and the sitemap should now be available in [http://localhost:3000/sitemap.xml](http://localhost:3000/sitemap.xml)! If it doesn't work, post on [GitHub discussions](https://github.com/vercel/next.js/discussions). diff --git a/examples/with-skynexui-components/README.md b/examples/with-skynexui-components/README.md index 83d7e339eb62..a3edb1133399 100644 --- a/examples/with-skynexui-components/README.md +++ b/examples/with-skynexui-components/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-skynexui-components with-skynexui-components-app # or yarn create next-app --example with-skynexui-components with-skynexui-components-app +# or +pnpm create next-app -- --example with-skynexui-components with-skynexui-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-slate/README.md b/examples/with-slate/README.md index 32e71a32901b..2dca487a20de 100644 --- a/examples/with-slate/README.md +++ b/examples/with-slate/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-slate with-slate-app # or yarn create next-app --example with-slate with-slate-app +# or +pnpm create next-app -- --example with-slate with-slate-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-static-export/README.md b/examples/with-static-export/README.md index 11570a44e57f..f0bb282cc086 100644 --- a/examples/with-static-export/README.md +++ b/examples/with-static-export/README.md @@ -18,4 +18,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-static-export with-static-export-app # or yarn create next-app --example with-static-export with-static-export-app +# or +pnpm create next-app -- --example with-static-export with-static-export-app ``` diff --git a/examples/with-stencil/README.md b/examples/with-stencil/README.md index 43328e35324f..85b623ede1ab 100644 --- a/examples/with-stencil/README.md +++ b/examples/with-stencil/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-stencil with-stencil-app # or yarn create next-app --example with-stencil with-stencil-app +# or +pnpm create next-app -- --example with-stencil with-stencil-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-stitches/README.md b/examples/with-stitches/README.md index 8d6de7711e71..4bd22fd070a3 100644 --- a/examples/with-stitches/README.md +++ b/examples/with-stitches/README.md @@ -16,6 +16,8 @@ Execute [Create Next App](https://github.com/vercel/next.js/tree/canary/packages npx create-next-app --example with-stitches with-stitches-app # or yarn create next-app --example with-stitches with-stitches-app +# or +pnpm create next-app -- --example with-stitches with-stitches-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-stomp/README.md b/examples/with-stomp/README.md index c65b6a4b4334..bb6de85d1101 100644 --- a/examples/with-stomp/README.md +++ b/examples/with-stomp/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-stomp with-stomp-app # or yarn create next-app --example with-stomp with-stomp-app +# or +pnpm create next-app -- --example with-stomp with-stomp-app ``` You'll need to provide the STOMP url of your server before running the app. Open [`.env`](.env) and update the `NEXT_PUBLIC_STOMP_SERVER` environment variable. diff --git a/examples/with-storybook-styled-jsx-scss/README.md b/examples/with-storybook-styled-jsx-scss/README.md index ac995645480b..7505064c37da 100644 --- a/examples/with-storybook-styled-jsx-scss/README.md +++ b/examples/with-storybook-styled-jsx-scss/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-storybook-styled-jsx-scss with-storybook-styled-jsx-scss-app # or yarn create next-app --example with-storybook-styled-jsx-scss with-storybook-styled-jsx-scss-app +# or +pnpm create next-app -- --example with-storybook-styled-jsx-scss with-storybook-styled-jsx-scss-app ``` ### Run Storybook diff --git a/examples/with-storybook/README.md b/examples/with-storybook/README.md index 35ef96b5e24d..1fe01ca30f80 100644 --- a/examples/with-storybook/README.md +++ b/examples/with-storybook/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-storybook with-storybook-app # or yarn create next-app --example with-storybook with-storybook-app +# or +pnpm create next-app -- --example with-storybook with-storybook-app ``` ### Run Storybook diff --git a/examples/with-strict-csp/README.md b/examples/with-strict-csp/README.md index 8d856ec63325..c303aba1ec45 100644 --- a/examples/with-strict-csp/README.md +++ b/examples/with-strict-csp/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-strict-csp with-strict-csp-app # or yarn create next-app --example with-strict-csp with-strict-csp-app +# or +pnpm create next-app -- --example with-strict-csp with-strict-csp-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-stripe-typescript/README.md b/examples/with-stripe-typescript/README.md index bf758720bf6c..b3fce7656bf9 100644 --- a/examples/with-stripe-typescript/README.md +++ b/examples/with-stripe-typescript/README.md @@ -69,6 +69,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-stripe-typescript with-stripe-typescript-app # or yarn create next-app --example with-stripe-typescript with-stripe-typescript-app +# or +pnpm create next-app -- --example with-stripe-typescript with-stripe-typescript-app ``` ### Required configuration diff --git a/examples/with-styled-components-babel/README.md b/examples/with-styled-components-babel/README.md index f9f489ed9459..f12db0832f73 100644 --- a/examples/with-styled-components-babel/README.md +++ b/examples/with-styled-components-babel/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-components-babel with-styled-components-babel-app # or yarn create next-app --example with-styled-components-babel with-styled-components-babel-app +# or +pnpm create next-app -- --example with-styled-components-babel with-styled-components-babel-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-components-rtl/README.md b/examples/with-styled-components-rtl/README.md index 68c4857e22cd..36e9e8bb16b0 100644 --- a/examples/with-styled-components-rtl/README.md +++ b/examples/with-styled-components-rtl/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-components-rtl with-styled-components-rtl-app # or yarn create next-app --example with-styled-components-rtl with-styled-components-rtl-app +# or +pnpm create next-app -- --example with-styled-components-rtl with-styled-components-rtl-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-components/README.md b/examples/with-styled-components/README.md index 689e990cbae8..37ecaa7f328b 100644 --- a/examples/with-styled-components/README.md +++ b/examples/with-styled-components/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-components with-styled-components-app # or yarn create next-app --example with-styled-components with-styled-components-app +# or +pnpm create next-app -- --example with-styled-components with-styled-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-jsx-plugins/README.md b/examples/with-styled-jsx-plugins/README.md index b9983a82f8c3..06d2b11303d8 100644 --- a/examples/with-styled-jsx-plugins/README.md +++ b/examples/with-styled-jsx-plugins/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-jsx-plugins with-styled-jsx-plugins-app # or yarn create next-app --example with-styled-jsx-plugins with-styled-jsx-plugins-app +# or +pnpm create next-app -- --example with-styled-jsx-plugins with-styled-jsx-plugins-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-jsx-scss/README.md b/examples/with-styled-jsx-scss/README.md index 825ed12a256d..2c9835713561 100644 --- a/examples/with-styled-jsx-scss/README.md +++ b/examples/with-styled-jsx-scss/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-jsx-scss with-styled-jsx-scss-app # or yarn create next-app --example with-styled-jsx-scss with-styled-jsx-scss-app +# or +pnpm create next-app -- --example with-styled-jsx-scss with-styled-jsx-scss-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-jsx/README.md b/examples/with-styled-jsx/README.md index 29f39f2dc691..14dbaa04961a 100644 --- a/examples/with-styled-jsx/README.md +++ b/examples/with-styled-jsx/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-jsx with-styled-jsx-app # or yarn create next-app --example with-styled-jsx with-styled-jsx-app +# or +pnpm create next-app -- --example with-styled-jsx with-styled-jsx-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styletron/README.md b/examples/with-styletron/README.md index 8da62c17bfa6..b6e37265b090 100644 --- a/examples/with-styletron/README.md +++ b/examples/with-styletron/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styletron with-styletron-app # or yarn create next-app --example with-styletron with-styletron-app +# or +pnpm create next-app -- --example with-styletron with-styletron-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-supertokens/README.md b/examples/with-supertokens/README.md index 31f3c4660c62..9a6620551749 100644 --- a/examples/with-supertokens/README.md +++ b/examples/with-supertokens/README.md @@ -10,6 +10,8 @@ This is a simple set up for applications protected by SuperTokens. npx create-next-app --example with-supertokens with-supertokens-app # or yarn create next-app --example with-supertokens with-supertokens-app +# or +pnpm create next-app -- --example with-supertokens with-supertokens-app ``` - Run `yarn install` diff --git a/examples/with-tailwindcss-emotion/README.md b/examples/with-tailwindcss-emotion/README.md index 42927fe9e578..ef4301ef6ed5 100644 --- a/examples/with-tailwindcss-emotion/README.md +++ b/examples/with-tailwindcss-emotion/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-tailwindcss-emotion with-tailwindcss-emotion-app # or yarn create next-app --example with-tailwindcss-emotion with-tailwindcss-emotion-app +# or +pnpm create next-app -- --example with-tailwindcss-emotion with-tailwindcss-emotion-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-tailwindcss/README.md b/examples/with-tailwindcss/README.md index 4dc4d5a2a66b..5be2b41b30db 100644 --- a/examples/with-tailwindcss/README.md +++ b/examples/with-tailwindcss/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-tailwindcss with-tailwindcss-app # or yarn create next-app --example with-tailwindcss with-tailwindcss-app +# or +pnpm create next-app -- --example with-tailwindcss with-tailwindcss-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-temporal/README.md b/examples/with-temporal/README.md index 1543e1c96309..666b03f8305f 100644 --- a/examples/with-temporal/README.md +++ b/examples/with-temporal/README.md @@ -60,6 +60,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-temporal next-temporal-app # or yarn create next-app --example with-temporal next-temporal-app +# or +pnpm create next-app -- --example with-temporal next-temporal-app ``` The Temporal Node SDK requires [Node `>= 14`, `node-gyp`, and Temporal Server](https://docs.temporal.io/docs/node/getting-started#step-0-prerequisites). Once you have everything installed, you can develop locally with the below commands in four different shells: diff --git a/examples/with-tesfy/README.md b/examples/with-tesfy/README.md index 9e59525c2a98..c3c24951acbe 100644 --- a/examples/with-tesfy/README.md +++ b/examples/with-tesfy/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-tesfy with-tesfy-app # or yarn create next-app --example with-tesfy with-tesfy-app +# or +pnpm create next-app -- --example with-tesfy with-tesfy-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-three-js/README.md b/examples/with-three-js/README.md index 7d0b87ae0aee..5ea60e30cfdf 100644 --- a/examples/with-three-js/README.md +++ b/examples/with-three-js/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-three-js with-three-js-app # or yarn create next-app --example with-three-js with-three-js-app +# or +pnpm create next-app -- --example with-three-js with-three-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-typescript-graphql/README.md b/examples/with-typescript-graphql/README.md index ecbf46add2c0..c7f4eb4b3511 100644 --- a/examples/with-typescript-graphql/README.md +++ b/examples/with-typescript-graphql/README.md @@ -31,6 +31,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-typescript-graphql with-typescript-graphql-app # or yarn create next-app --example with-typescript-graphql with-typescript-graphql-app +# or +pnpm create next-app -- --example with-typescript-graphql with-typescript-graphql-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-typescript-styled-components/README.md b/examples/with-typescript-styled-components/README.md index 9fa51bc36a08..b2e5f75e6ffc 100644 --- a/examples/with-typescript-styled-components/README.md +++ b/examples/with-typescript-styled-components/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-typescript-styled-components with-typescript-styled-components-app # or yarn create next-app --example with-typescript-styled-components with-typescript-styled-components-app +# or +pnpm create next-app -- --example with-typescript-styled-components with-typescript-styled-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-typescript/README.md b/examples/with-typescript/README.md index 50bf12650db7..897f79301f20 100644 --- a/examples/with-typescript/README.md +++ b/examples/with-typescript/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-typescript with-typescript-app # or yarn create next-app --example with-typescript with-typescript-app +# or +pnpm create next-app -- --example with-typescript with-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-typestyle/README.md b/examples/with-typestyle/README.md index 760473b895cf..7c8fefbd0a35 100644 --- a/examples/with-typestyle/README.md +++ b/examples/with-typestyle/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-typestyle with-typestyle-app # or yarn create next-app --example with-typestyle with-typestyle-app +# or +pnpm create next-app -- --example with-typestyle with-typestyle-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-unsplash/README.md b/examples/with-unsplash/README.md index 452d880e72dd..87dcd88790f3 100644 --- a/examples/with-unsplash/README.md +++ b/examples/with-unsplash/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-unsplash with-unsplash-app # or yarn create next-app --example with-unsplash with-unsplash-app +# or +pnpm create next-app -- --example with-unsplash with-unsplash-app ``` ## Configuration diff --git a/examples/with-unstated/README.md b/examples/with-unstated/README.md index 860a562427db..369391cf2aef 100644 --- a/examples/with-unstated/README.md +++ b/examples/with-unstated/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-unstated with-unstated-app # or yarn create next-app --example with-unstated with-unstated-app +# or +pnpm create next-app -- --example with-unstated with-unstated-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-urql/README.md b/examples/with-urql/README.md index 622f66a5337b..f9a649914229 100644 --- a/examples/with-urql/README.md +++ b/examples/with-urql/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-urql with-urql-app # or yarn create next-app --example with-urql with-urql-app +# or +pnpm create next-app -- --example with-urql with-urql-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-userbase/README.md b/examples/with-userbase/README.md index 57f51b508ece..957ede8466b3 100644 --- a/examples/with-userbase/README.md +++ b/examples/with-userbase/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-userbase next-userbase-app # or yarn create next-app --example with-userbase next-userbase-app +# or +pnpm create next-app -- --example with-userbase next-userbase-app ``` ## Configuration diff --git a/examples/with-vercel-fetch/README.md b/examples/with-vercel-fetch/README.md index 9c1601fb87f4..7d06a753c4a1 100644 --- a/examples/with-vercel-fetch/README.md +++ b/examples/with-vercel-fetch/README.md @@ -16,4 +16,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-vercel-fetch with-vercel-fetch-app # or yarn create next-app --example with-vercel-fetch with-vercel-fetch-app +# or +pnpm create next-app -- --example with-vercel-fetch with-vercel-fetch-app ``` diff --git a/examples/with-videojs/README.md b/examples/with-videojs/README.md index d091dc696c9f..8dfca95db58b 100644 --- a/examples/with-videojs/README.md +++ b/examples/with-videojs/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-videojs with-videojs-app # or yarn create next-app --example with-videojs with-videojs-app +# or +pnpm create next-app -- --example with-videojs with-videojs-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-web-worker/README.md b/examples/with-web-worker/README.md index 0cf00b2760ce..d79686457ed9 100644 --- a/examples/with-web-worker/README.md +++ b/examples/with-web-worker/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-web-worker with-web-worker-app # or yarn create next-app --example with-web-worker with-web-worker-app +# or +pnpm create next-app -- --example with-web-worker with-web-worker-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-webassembly/README.md b/examples/with-webassembly/README.md index 27997ea82d6f..5ea9ebfa37d8 100644 --- a/examples/with-webassembly/README.md +++ b/examples/with-webassembly/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-webassembly with-webassembly-app # or yarn create next-app --example with-webassembly with-webassembly-app +# or +pnpm create next-app -- --example with-webassembly with-webassembly-app ``` This example uses Rust compiled to wasm, the wasm file is included in the example, but to compile your own Rust code you'll have to [install](https://www.rust-lang.org/learn/get-started) Rust. diff --git a/examples/with-why-did-you-render/README.md b/examples/with-why-did-you-render/README.md index 23b8816685ee..15fc1345c00f 100644 --- a/examples/with-why-did-you-render/README.md +++ b/examples/with-why-did-you-render/README.md @@ -71,6 +71,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-why-did-you-render with-why-did-you-render-app # or yarn create next-app --example with-why-did-you-render with-why-did-you-render-app +# or +pnpm create next-app -- --example with-why-did-you-render with-why-did-you-render-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?filter=next.js&utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-xstate/README.md b/examples/with-xstate/README.md index 08e94a0bd01c..2f3fb7bf55ed 100644 --- a/examples/with-xstate/README.md +++ b/examples/with-xstate/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-xstate with-xstate-app # or yarn create next-app --example with-xstate with-xstate-app +# or +pnpm create next-app -- --example with-xstate with-xstate-app ``` ### Inspect your machines using `@xstate/inspect` diff --git a/examples/with-yarn-workspaces/README.md b/examples/with-yarn-workspaces/README.md index c5f75654fdd8..9b78be8bff67 100644 --- a/examples/with-yarn-workspaces/README.md +++ b/examples/with-yarn-workspaces/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-yarn-workspaces with-yarn-workspaces-app # or yarn create next-app --example with-yarn-workspaces with-yarn-workspaces-app +# or +pnpm create next-app -- --example with-yarn-workspaces with-yarn-workspaces-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-zones/README.md b/examples/with-zones/README.md index faf89a1b1d60..04f75f858fe5 100644 --- a/examples/with-zones/README.md +++ b/examples/with-zones/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-zones with-zones-app # or yarn create next-app --example with-zones with-zones-app +# or +pnpm create next-app -- --example with-zones with-zones-app ``` With multi zones you have multiple Next.js apps over a single app, therefore every app has its own dependencies and it runs independently. diff --git a/examples/with-zustand/README.md b/examples/with-zustand/README.md index 4328433715f1..875f8bb3749a 100644 --- a/examples/with-zustand/README.md +++ b/examples/with-zustand/README.md @@ -28,6 +28,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-zustand with-zustand-app # or yarn create next-app --example with-zustand with-zustand-app +# or +pnpm create next-app -- --example with-zustand with-zustand-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/packages/create-next-app/README.md b/packages/create-next-app/README.md index 12ebd9d5cd02..74b85d940780 100644 --- a/packages/create-next-app/README.md +++ b/packages/create-next-app/README.md @@ -3,19 +3,31 @@ The easiest way to get started with Next.js is by using `create-next-app`. This CLI tool enables you to quickly start building a new Next.js application, with everything set up for you. You can create a new app using the default Next.js template, or by using one of the [official Next.js examples](https://github.com/vercel/next.js/tree/canary/examples). To get started, use the following command: ```bash -npx create-next-app +npx create-next-app@latest +# or +yarn create next-app +# or +pnpm create next-app ``` Or, for a [TypeScript project](https://github.com/vercel/next.js/blob/canary/docs/basic-features/typescript.md): ```bash -npx create-next-app --typescript +npx create-next-app@latest --typescript +# or +yarn create next-app --typescript +# or +pnpm create next-app -- --typescript ``` To create a new app in a specific folder, you can send a name as an argument. For example, the following command will create a new Next.js app called `blog-app` in a folder with the same name: ```bash -npx create-next-app blog-app +npx create-next-app@latest blog-app +# or +yarn create next-app blog-app +# or +pnpm create next-app blog-app ``` ## Options