https://github.com/tborychowski/electron-webpack-gulp
electron-webpack-gulp starter template
https://github.com/tborychowski/electron-webpack-gulp
electron gulp starter-kit starter-template webpack
Last synced: about 2 months ago
JSON representation
electron-webpack-gulp starter template
- Host: GitHub
- URL: https://github.com/tborychowski/electron-webpack-gulp
- Owner: tborychowski
- License: gpl-3.0
- Created: 2019-06-20T11:52:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-01T14:21:47.000Z (almost 6 years ago)
- Last Synced: 2025-02-14T03:23:33.850Z (over 1 year ago)
- Topics: electron, gulp, starter-kit, starter-template, webpack
- Language: CSS
- Size: 143 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Electron-webpack-gulp
This is a starter template for a simple electron app.
Technologies used:
- [webpack](https://webpack.js.org/) - for bundling modules together
- [gulp](https://gulpjs.com) - for running task
- [svelte](https://svelte.dev) - for nicer javascript componentisation
- [stylus](http://stylus-lang.com) - for nicer css
## Install
```sh
git clone https://github.com/tborychowski/electron-webpack-gulp.git
cd electron-webpack-gulp
rm -rf .git
npm i
npm start
```
## Notes
- The app will reload when renderer assets (css, js or html) changes, and will fully restart when main assets change (main `index.js` file).
- For now there's livereload script loaded in the main `index.html` file to allow the renderer's page reloading (I don't like the idea or running a webpack server). This should be manually removed for production (I automate that later).
- make sure you have gulp installed globally (`npm i -g gulp`)