mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
c3e5caf110
* docs(examples): improve DX while copy command to create new project * chore: apply code review Co-authored-by: Marcos Bérgamo <Marcos.Bergamo@refinitiv.com> Co-authored-by: JJ Kasper <jj@jjsweb.site>
1.1 KiB
1.1 KiB
HTTP2 server example
This example shows the most basic example using an HTTP2 server. We have 2 pages: pages/index.js and pages/about.js. The former responds to / requests and the latter to /about. Using next/link you can add hyperlinks between them with universal routing capabilities.
How to use
Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:
npx create-next-app --example with-http2 with-http2-app
yarn create next-app --example with-http2 with-http2-app
pnpm create next-app --example with-http2 with-http2-app
Create the public and private keys:
openssl req -x509 -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' \
-keyout localhost-privkey.pem -out localhost-cert.pem
Deploy it to the cloud with Vercel (Documentation).