Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/szwacz/electron-boilerplate
Boilerplate application for Electron runtime
https://github.com/szwacz/electron-boilerplate
Last synced: 14 days ago
JSON representation
Boilerplate application for Electron runtime
- Host: GitHub
- URL: https://github.com/szwacz/electron-boilerplate
- Owner: szwacz
- License: mit
- Archived: true
- Created: 2015-04-25T09:16:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-27T15:03:51.000Z (almost 2 years ago)
- Last Synced: 2024-07-31T19:38:35.951Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 806 KB
- Stars: 3,125
- Watchers: 108
- Forks: 491
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-seed - electron-boilerplate - Comprehensive boilerplate which even generates installers. (Seed List / Desktop)
- awesome-boilerplate - Electron Boilerplate
- awesome-electron - electron-boilerplate - Comprehensive boilerplate which even generates installers - by [szwacz](https://github.com/szwacz). (Boilerplates / Samples)
- awesome-electron - electron-boilerplate - Comprehensive boilerplate which even generates installers. ![](https://img.shields.io/github/stars/szwacz/electron-boilerplate.svg?style=social&label=Star) (Boilerplates / Tools)
- awesome-electron-zh - electron-boilerplate - Comprehensive boilerplate which even generates installers - by [szwacz](https://github.com/szwacz). (Boilerplates / Samples)
- jimsghstars - szwacz/electron-boilerplate - Boilerplate application for Electron runtime (JavaScript)
README
# electron-boilerplate
**This repository is no longer in active maintenance.**
---
Minimalistic, very easy to understand boilerplate for [Electron runtime](https://www.electronjs.org/). Tested on Windows, macOS and Linux.
This project contains only bare minimum of tooling and dependencies to provide you with simple to understand and extensible base (but still, this is fully functional Electron environment). The boilerplate doesn't impose on you any frontend technologies, so feel free to pick your favourite.
# Quick start
Make sure you have [Node.js](https://nodejs.org) installed, then type...
```
git clone https://github.com/szwacz/electron-boilerplate.git
cd electron-boilerplate
npm install
npm start
```
...and you have a running desktop application on your screen.# Structure of the project
The application consists of two main folders...
`src` - files within this folder get transpiled or compiled (because Electron can't use them directly).
`app` - contains all static assets which don't need any pre-processing and can be used directly.
The build process compiles the content of the `src` folder and puts it into the `app` folder, so after the build has finished, your `app` folder contains the full, runnable application. Treat `src` and `app` folders like two halves of one bigger thing.
The drawback of this design is that `app` folder contains some files which should be git-ignored and some which shouldn't (see `.gitignore` file). But this two-folders split makes development builds much faster.
# Development
## Starting the app
```
npm start
```## The build pipeline
Build process uses [Webpack](https://webpack.js.org/). The entry-points are `src/main.js` and `src/app.js`. Webpack will follow all `import` statements starting from those files and compile code of the whole dependency tree into one `.js` file for each entry point.
[Babel](http://babeljs.io/) is also utilised, but mainly for its great error messages. Electron under the hood runs latest Chromium, hence most of the new JavaScript features are already natively supported.
## Environments
Environmental variables are done in a bit different way (not via `process.env`). Env files are plain JSONs in `config` directory, and build process dynamically links one of them as an `env` module. You can import it wherever in code you need access to the environment.
```js
import env from "env";
console.log(env.name);
```## Adding npm modules to your app
Remember to respect the split between `dependencies` and `devDependencies` in `package.json` file. Your distributable app will contain only modules listed in `dependencies` after running the release script.
*Side note:* If the module you want to use in your app is a native one (not pure JavaScript but compiled binary) you should first run `npm install name_of_npm_module` and then `npm run postinstall` to rebuild the module for Electron. You need to do this once after you're first time installing the module. Later on, the postinstall script will fire automatically with every `npm install`.
# Testing
Run all tests:
```
npm test
```## Unit
```
npm run unit
```
Using [electron-mocha](https://github.com/jprichardson/electron-mocha) test runner with the [Chai](http://chaijs.com/api/assert/) assertion library. You can put your spec files wherever you want within the `src` directory, just name them with the `.spec.js` extension.## End to end
```
npm run e2e
```
Using [Mocha](https://mochajs.org/) and [Spectron](http://electron.atom.io/spectron/). This task will run all files in `e2e` directory with `.e2e.js` extension.# Making a release
To package your app into an installer use command:
```
npm run release
```Once the packaging process finished, the `dist` directory will contain your distributable file.
[Electron-builder](https://github.com/electron-userland/electron-builder) is handling the packaging process. Follow docs over there to customise your build.
You can package your app cross-platform from a single operating system, [electron-builder kind of supports this](https://www.electron.build/multi-platform-build), but there are limitations and asterisks. That's why this boilerplate doesn't do that by default.