rsnext/examples/with-electron
2022-05-27 21:21:40 +00:00
..
main Update with-electron example (#23873) 2021-04-11 15:38:15 +00:00
renderer Update with-electron example (#23873) 2021-04-11 15:38:15 +00:00
.gitignore examples: Update with-electron .gitignore (#15783) 2020-08-02 08:14:48 +00:00
package.json Fixes scripts in Electron examples. (#36133) 2022-04-14 00:04:41 +00:00
README.md Update pnpm create next-app for latest pnpm 6 and 7 (#37254) 2022-05-27 21:21:40 +00:00

Electron application example

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

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

For detailed documentation about how to build Electron apps with Next.js, see this blog post!

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-electron with-electron-app
# or
yarn create next-app --example with-electron with-electron-app
# or
pnpm create next-app --example with-electron with-electron-app

You can create the production app using npm run dist.