README.md 817 字节
Newer Older
1 2 3 4
# Example with portals

## How to use

5 6 7 8 9 10 11 12 13 14 15
### Using `create-next-app`

Download [`create-next-app`](https://github.com/segmentio/create-next-app) to bootstrap the example:

```
npm i -g create-next-app
create-next-app --example with-portals with-portals-app
```

### Download manually

16 17 18
Download the example [or clone the repo](https://github.com/zeit/next.js):

```bash
19
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-portals
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
cd with-portals
```

Install it and run:

```bash
npm install
npm run dev
```

Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download))

```bash
now
```

## The idea behind the example

This example show how to use the React [Portals](https://reactjs.org/docs/portals.html) feature with Next.js.