roycrippen / electron-webpack-quick-start-roy

sample electron project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

electron-webpack-quick-start-roy

A bare minimum project structure to get started developing with electron-webpack.

Thanks to the power of electron-webpack this template comes packed with...

  • Use of webpack-dev-server for development
  • HMR for both renderer and main processes
  • Use of babel-preset-env that is automatically configured based on your electron version
  • Use of electron-builder to package and build a distributable electron application

Make sure to check out electron-webpack documentation for more details.

Getting Started

Simply clone down this repository, install dependencies, and get started on your application.

git clone https://github.com/roycrippen/electron-webpack-quick-start-roy.git
cd electron-webpack-quick-start-roy
rm -rf .git

# install dependencies
npm install

# run application in development mode
npm run dev

# compile source code and create webpack output
npm run compile

# `yarn compile` & create AppImage build with electron-builder
npm run dist

About

sample electron project

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:JavaScript 95.6%Language:TypeScript 4.4%