You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
510 B
Markdown
26 lines
510 B
Markdown
# NextJS
|
|
|
|
[Home](../../README.md)
|
|
|
|
[Reference](https://nextjs.org/learn/basics/create-nextjs-app)
|
|
|
|
Bootstrap a project
|
|
|
|
```sh
|
|
$ npx create-next-app nextjs-blog --use-npm --example "https://github.com/vercel/next-learn-starter/tree/master/learn-starter"
|
|
|
|
```
|
|
|
|
Launch the server
|
|
|
|
```sh
|
|
$ cd nextjs-blog
|
|
$ npm run dev
|
|
|
|
> learn-starter@0.1.0 dev C:\dev\playground\nextjs-blog
|
|
> next dev
|
|
|
|
ready - started server on http://localhost:3000
|
|
```
|
|
|
|
Browse [localhost](http://localhost:3000). Next.js page will be displayed |