.github | ||
public | ||
src | ||
tests | ||
.gitignore | ||
CHANGELOG_PRE_V4.md | ||
CHANGELOG_V4+.md | ||
jest.config.js | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig.json | ||
webpack.config.js | ||
yarn.lock |
Electron-React-TypeScript-Webpack-Boilerplate
A boilerplate that let you instantly start working on your next Electron app in TypeScript with no time wasted messing with the config files.
- Ready to use Electron project template with React, Webpack and TypeScript seamlessly integrated.
- ESLint set up with TypeScript, Airbnb's rules, and Jest support.
- Jest integrated and configured.
electron-builder
for app packaging, with basic build config for Windows macOS included.- Clean, easy to read and alter config files. No config file is hidden behind yet another script!
- Monthly maintenance to keep things up to date!
This boilerplate is tested on the latest macOS and Windows. If anything doesn't work, please file an issue.
Maintenance schedule
Starting from v4.0.0
, the project maintenance will become much more regular.
A new release will be published on a monthly basis to keep the package
dependencies, package configurations and APIs / syntax up to date.
Maintenance work will begin on 1st of each month, and expect the new version to be released within the first week of the month. New features from different tools integrated in this boilerplate might not always be implemented at once, especially on experimental features. If you want any particular feature to be implemented, please file an issue, or consider make a new pull request.
Development plan
- Create a
create-react-app
-like package initialiser !!! - Integrate another end-to-end testing framework to replace Spectron
- Migrate to Webpack 5
Asset Modules
🚨 🚧 CAUTION 🚧 🚨
-
Spectron has officially been deprecated by the Electron team on February 1, 2022, thus, its' integration has also been dropped from this boilerplate on
v4+
.A replacement will be integrated in future version (pending for
v5
). Currently evaluating different options including Playwright and WebdriverIO. -
mocha
has been dropped and replaced by Jest onv4+
. If you're usingmocha
as your unit testing framework, please reference topackage.json
fromv3.0.0
.
Getting started
-
Clone this repository, or if you're hosting your Electron project on GitHub, click
Use this template
to create a new project. -
Edit the following fields in
package.json
for your own project:{ "name": "your-project-name", "version": "whatever-you-like", "description": "your-own-description", "build": { "appId": "your-app-id", "productName": "your-product-name", "buildVersion": "your-build-number" }, "author": "who's-the-author?", "license": "if-you-don't-want-to-use-MIT", "repository": "type-and-link-of-your-repo", "bugs": "issue-page-of-your-repo", "homepage": "homepage-of-your-repo" }
-
npm install
to install the dependencies.Please note that
optionalDependencies
should only be omitted on your CI/CD pipeline for unit testing. It's meant to save some bandwidth. You'll need all the packages listed for development.
Done! Now run npm run dev
to start the Webpack in development and watch mode.
It's time to start working on your project.
Be aware that starting Webpack will only compile your files to dist
folder
but won't start the Electron app. Use npm start
command to start your
Electron app once the files are compiled.
Starting from v4.0.0
, you no longer need to manually config your module
path alias in webpack.config.js
. All module path alias set in tsconfig.json
will be configured in Webpack automatically thanks to tsconfig-paths
and
tsconfig-paths-webpack-plugin
.
Build your Electron app package
Different from the official Electron quick start guide, this boilerplate uses
electron-builder
instead of Electron Forge to package your Electron app.
By default, the build configuration in package.json
is configured to build the
mac universal package (for Apple Silicon & Intel based machines) and Windows
exe
installer (both 32 & 64 bit). You should not need to change anything in
the build script other than supplying the app icon unless you need to sign your
code/package or build for Linux.
For code signing and notarization, or to build for Linux, please read
electron-builder
's document for configuring the build script.
To package your Electron app, run npm run prod
to get your code compiled in
production
mode, then use npm run build:(win|mac)
to build the package.
Known issues
-
electron-builder
packages the file into Electron'sasar
archive format by default. Based on past experiences with old Electron &electron-builder
versions, this might lead to runtime error on Windows while launching the installed Electron app.One way to verify this issue is to build the mac package and see if your app runs fine on mac. If it's the case, you can override the
asar
archive option in the build configuration inpackage.json
by addingasar: false
inwin
section.This solution isn't ideal but since
asar
archiving is meant to improve performance of reading files if bundler like Webpack is not being used. The app packaging workflow defined in this boilerplate already uses Webpack to minify your code inproduction
builds, so there shouldn't be any significant performance different withasar
archiving disabled.
Project folders & files
-
dist/
- Webpack output locationContents will be flushed automatically on execution of
npm run <dev|prod>
script. -
out/
-electron-builder
output location -
public/
- Global static assets.-
index.html
- Template forHTML Webpack Plugin
Update the value of
<title>
tag to change the default window title. -
style.css
-CSS
file location sampleNot much defined in this file. You can either put your
CSS
settings here or use any other tools you prefer.
-
-
src/
- Folder for all your source code-
main/
- For modules which run on themain
process.main.ts
- Electronmain
process entry point
-
preload
- Preload scripts go here-
ipc-api.ts
- APIs for IPC betweenmain
&renderer
Consider convert this module into a collection of submodules if you have many APIs for IPC. See example as below:
// ipc-api/index.ts import submoduleA from './submodule-a'; import submoduleB from './submodule-b'; export default { ...submoduleA, ...submoduleB }; // ipc-api/submodule-a.ts import { ipcRenderer } from 'electron'; function a { ipcRenderer.send('a'); } export default { a }; // ipc-api/submodule-b.ts import { ipcRenderer } from 'electron'; function b { ipcRenderer.send('b'); } export default { b };
-
preload.ts
- Electron preload script entry pointThere should be no need to modify this file unless you want to use other key(s) for your IPC APIs. By default, all APIs defined in
ipc-api
module are exposed under keyipcApi
incontextBridge
.
-
-
renderer/
- Where the frontend scripts stay -
types/
- Home for self-defined.d.ts
files-
global.d.ts
- Extends global scope interfacesThis file includes ambient declaration for calling the IPC APIs defined in
preload/ipc-api
from therenderer
. Remember NOT to remove this part, otherwise TypeScript will tell youtype not exist
. However, if you've opted to use a different key other thanipcAPI
in the preload script, DO remember to update this file to match your own settings.
-
-
utils/
- Place to store the helper scriptsnode-env.ts
- Shortcut to determineNODE
environment
-
-
tests/
- Unit testing files locationTo avoid test files mixing up with the source code, Jest is configured to look for test file(s) within this folder only.
File name of the test files can either be
[filename].test.tsx
or[filename].spec.ts(x)
.js(x)
can also be used for test files, but I assume you'd use TypeScript if you're using this boilerplate.main/main.spec.ts
- Sample test file forsrc/main/main
tsconfig.json
- TypeScript config file fortests
module
-
.eslintignore
- ESLint ignore file -
.eslintrc
- ESLint config fileConfigured to use Airbnb's rules with TypeScript supported, and rules for Jest applied.
-
.gitignore
- Git ignore file -
CHANGELOG_PRE_V4.md
- Changelog of this boilerplate prior tov4.0.0
-
CHANGELOG_V4+.md
- Changelog of this boilerplate fromv4.0.0
onwards -
jest.config.js
- Jest config file -
LICENSE
- MIT license -
package-lock.json
-
package.json
Includes basic build config for
electron-builder
. It's likely that you'll have to personalise the build config when it comes to the time you're about to release your app. Please readelectron-builder
's document for the build config setup guides. -
README.md
-
tsconfig.json
- TypeScript config fileModule path aliases are configured here. Jest & Webpack will pick up the alias settings here to config their own. No need to manually config in Jest & Webpack again.
-
webpack.config.json
- Webpack config fileIncludes configurations targetting
electron-main
,electron-preload
, andelectron-renderer
respectively.
Author
Donation
Maintaining this project takes time, lots of cups of coffee, and I do it for free. Consider buy me coffee via donations. 100% of donation will fund my coffee buying budget for quality coffee beans from great roasters I know 😉 ☕️️
License
Electron React TypeScript Webpack Boilerplate is open source software licensed as MIT.