A minimal Electron + React.js boilerplate with parcel as bundler. Parcel is an alternative web application bundler to Webpack.
git@github.com:Snjoo/parcel-react-electron.git
cd parcel-react-electron
yarn
Run these commands to start dev server and Electron app
# Parcel bundles the code and runs dev server
$ yarn dev
# Run the electron app which uses local dev server
$ yarn start-dev
Run this command to bundle code in production mode
# Parcel bundle code once
$ yarn build
# Create executables
$ yarn dist