nextron | next |
---|---|
v6.x |
v10.x |
v5.x |
v9.x |
v4.x |
v8.x |
v2.x / v3.x |
v7.x |
v1.x |
v6.x |
npm
, yarn
and pnpm >= v4
are supported.
- Show a way of developing desktop apps only web knowledge
- Easy to use
- Be transparent and open to OSS developers
We can use examples/*
as a template.
To create the examples/with-typescript-material-ui
, run the command below:
# with npm
$ npm init nextron-app MY_APP --example with-typescript-material-ui
# with yarn
$ yarn create nextron-app MY_APP --example with-typescript-material-ui
# with pnpx
$ pnpx create-nextron-app MY_APP --example with-typescript-material-ui
Run npm run dev
, and nextron automatically launches an electron app.
{
"scripts": {
"dev": "nextron"
}
}
Run npm run build
, and nextron outputs packaged bundles under the dist
folder.
{
"scripts": {
"build": "nextron build"
}
}
To build Windows 32 bit version, run npm run build:win32
like below:
{
"scripts": {
"build": "nextron build",
"build:all": "nextron build --all",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"build:mac": "nextron build --mac --x64",
"build:linux": "nextron build --linux"
}
}
CAUTION: To build macOS binary, your host machine must be macOS!
Edit electron-builder.yml
properties for custom build configuration.
appId: com.example.nextron
productName: My Nextron App
copyright: Copyright © 2020 Yoshihide Shiono
directories:
output: dist
buildResources: resources
files:
- from: .
filter:
- package.json
- app
publish: null
For more information, please check out electron-builder official configuration documents.
module.exports = {
// specify an alternate main src directory, defaults to 'main'
mainSrcDir: 'main',
// specify an alternate renderer src directory, defaults to 'renderer'
rendererSrcDir: 'renderer',
// main process' webpack config
webpack: (defaultConfig, env) => {
// do some stuff here
return defaultConfig;
},
};
module.exports = {
webpack: (defaultConfig, env) => Object.assign(defaultConfig, {
entry: {
// electron main process
background: './main/background.js',
// we can require `config.js` by using `require('electron').remote.require('./config')`
config: './main/config.js',
},
}),
};
We can extends the default babel config of main process by putting .babelrc
in our project root like this:
.babelrc
:
{
"presets": [
"nextron/babel"
]
}
There are two webpack processes: a server process and client one.
If we want to use some libraries that don't support SSR(Server Side Rendering), we should check if the current process is whether a server or client:
// pages/home.jsx
import electron from 'electron';
const Home = () => {
// we can't use `electron.remote` directly!
const remote = electron.remote;
// we should check it like this
const remote = electron.remote || false;
if (remote) {
// we can use `electron.remote`
// because this scope is the client webpack process
}
};
export default Home;
As mentioned above, we should check if the webpack process is a client because the renderer process is a web client.
So we must use react state
as follows:
// pages/home.jsx
import electron from 'electron';
import React, { useState, useEffect } from 'react';
// prevent SSR webpacking
const remote = electron.remote || false;
const Home = () => {
const [config, setConfig] = useState({});
useEffect(() => {
// componentDidMount()
if (remote) {
// require `./main/config.js` from `./main/background.js`
// and set the config
setConfig(remote.require('./config').default);
}
return () => {
// componentWillUnmount()
};
}, []);
return (
<React.Fragment>
<p>Message: {config.message}</p>
</React.Fragment>
);
};
export default Home;
See examples folder for more information.
# with npm
$ npm init nextron-app my-app --example custom-build-options
# with yarn
$ yarn create nextron-app my-app --example custom-build-options
# with pnpx
$ pnpx create-nextron-app my-app --example custom-build-options
# with npm
$ npm init nextron-app my-app --example custom-main-entry
# with yarn
$ yarn create nextron-app my-app --example custom-main-entry
# with pnpx
$ pnpx create-nextron-app my-app --example custom-main-entry
# with npm
$ npm init nextron-app my-app --example custom-renderer-port
# with yarn
$ yarn create nextron-app my-app --example custom-renderer-port
# with pnpx
$ pnpx create-nextron-app my-app --example custom-renderer-port
# with npm
$ npm init nextron-app my-app --example ipc-communication
# with yarn
$ yarn create nextron-app my-app --example ipc-communication
# with pnpx
$ pnpx create-nextron-app my-app --example ipc-communication
# with npm
$ npm init nextron-app my-app --example parameterized-routing
# with yarn
$ yarn create nextron-app my-app --example parameterized-routing
# with pnpx
$ pnpx create-nextron-app my-app --example parameterized-routing
# with npm
$ npm init nextron-app my-app --example remote-require
# with yarn
$ yarn create nextron-app my-app --example remote-require
# with pnpx
$ pnpx create-nextron-app my-app --example remote-require
# with npm
$ npm init nextron-app my-app --example store-data
# with yarn
$ yarn create nextron-app my-app --example store-data
# with pnpx
$ pnpx create-nextron-app my-app --example store-data
# with npm
$ npm init nextron-app my-app --example web-worker
# with yarn
$ yarn create nextron-app my-app --example web-worker
# with pnpx
$ pnpx create-nextron-app my-app --example web-worker
# with npm
$ npm init nextron-app my-app --example with-javascript
# with yarn
$ yarn create nextron-app my-app --example with-javascript
# with pnpx
$ pnpx create-nextron-app my-app --example with-javascript
# with npm
$ npm init nextron-app my-app --example with-javascript-ant-design
# with yarn
$ yarn create nextron-app my-app --example with-javascript-ant-design
# with pnpx
$ pnpx create-nextron-app my-app --example with-javascript-ant-design
# with npm
$ npm init nextron-app my-app --example with-javascript-emotion
# with yarn
$ yarn create nextron-app my-app --example with-javascript-emotion
# with pnpx
$ pnpx create-nextron-app my-app --example with-javascript-emotion
# with npm
$ npm init nextron-app my-app --example with-javascript-material-ui
# with yarn
$ yarn create nextron-app my-app --example with-javascript-material-ui
# with pnpx
$ pnpx create-nextron-app my-app --example with-javascript-material-ui
# with npm
$ npm init nextron-app my-app --example with-typescript
# with yarn
$ yarn create nextron-app my-app --example with-typescript
# with pnpx
$ pnpx create-nextron-app my-app --example with-typescript
# with npm
$ npm init nextron-app my-app --example with-typescript-emotion
# with yarn
$ yarn create nextron-app my-app --example with-typescript-emotion
# with pnpx
$ pnpx create-nextron-app my-app --example with-typescript-emotion
# with npm
$ npm init nextron-app my-app --example with-typescript-material-ui
# with yarn
$ yarn create nextron-app my-app --example with-typescript-material-ui
# with pnpx
$ pnpx create-nextron-app my-app --example with-typescript-material-ui
$ git clone https://github.com/saltyshiomix/nextron.git
$ cd nextron
$ yarn
$ yarn dev # default is examples/with-javascript
pnpm
or npm
are also supported.
$ yarn dev <EXAMPLE-FOLDER-NAME>
- create-nextron-app - Create Nextron (Electron + Next.js) apps in one command ⚡
- Nuxtron - ⚡ Electron + Nuxt.js ⚡
This project is licensed under the terms of the MIT license.