2017-11-05 16:20:24 +00:00
|
|
|
# Hello World example
|
|
|
|
|
|
|
|
## Only client render for external dependencies
|
|
|
|
|
|
|
|
Download the example [or clone the repo](https://github.com/zeit/next.js):
|
|
|
|
|
|
|
|
```bash
|
2017-12-07 02:12:42 +00:00
|
|
|
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/only-client-render-external-dependencies
|
2017-11-05 16:20:24 +00:00
|
|
|
cd only-client-render-external-dependencies
|
|
|
|
```
|
|
|
|
|
|
|
|
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 shows how to use an external dependency that only allows client-render.
|