README.md 1.2 KB
Newer Older
S
Sergio Xalambrí 已提交
1 2
# Electron application example

3 4
**You can find a detailed documentation about how to build Electron apps with Next.js [here](https://leo.im/2017/electron-next)!**

5 6 7 8 9 10
## How to use

### Using `create-next-app`

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

11 12 13 14
```bash
npx create-next-app --example with-electron with-electron-app
# or
yarn create next-app --example with-electron with-electron-app
15 16 17
```

### Download manually
S
Sergio Xalambrí 已提交
18 19 20 21

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

```bash
22
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-electron
S
Sergio Xalambrí 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
cd with-electron
```

Install it and run:

```bash
npm install
npm start
```

## The idea behind the example

This example show how you can use Next.js inside an Electron application to avoid a lot of configuration, use Next.js router as view and use server-render to speed up the initial render of the application.

For development it's going to run a HTTP server and let Next.js handle routing. In production it use `next export` to pre-generate HTML static files and use them in your app instead of running an HTTP server.

You can create the production app using `npm run dist`.