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

3 4 5 6
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.

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

9 10 11 12
## How to use

### Using `create-next-app`

13
Execute [`create-next-app`](https://github.com/zeit/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example:
14

15
```bash
16
npm init next-app --example with-electron with-electron-app
17 18
# or
yarn create next-app --example with-electron with-electron-app
19 20 21
```

### Download manually
S
Sergio Xalambrí 已提交
22

23
Download the example:
S
Sergio Xalambrí 已提交
24 25

```bash
26
curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-electron
S
Sergio Xalambrí 已提交
27 28 29 30 31 32 33
cd with-electron
```

Install it and run:

```bash
npm install
34 35 36 37
npm run start
# or
yarn
yarn start
S
Sergio Xalambrí 已提交
38 39 40
```

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