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.gitcd parcel-react-electronyarn
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-devRun this command to bundle code in production mode
# Parcel bundle code once
$ yarn build
# Create executables
$ yarn dist