amalgamet / vite-electron-builder

Secure boilerplate for Electron app based on Vite. TypeScript + Vue/React/Angular/Svelte/Vanilla

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vite Electron Builder Boilerplate v2 (React)

GitHub issues by-label Minimal node version Minimal npm version

Vite + Electron = πŸ”₯

This is a secure template for Electron applications based on the latest security requirements, recommendations and best practices.

Under the hood an insanely fast next-gen bundler Vite is used for both development and production bundling, along with electron-builder for compilation.

Support

Get started

Follow these steps to get started with this template:

  1. Click the Use this template button (you must be logged in) or just clone this repo.
  2. If you want use another package manager don't forget to edit relevant .github/workflows -- they use npm by default.

That's all you need. πŸ˜‰

Note: This template uses NPM v7, and as such installs peerDependencies automatically. If you are using a different package manager, you may need to install your peerDependencies manually.

Features

Electron Electron version

  • Template use the latest electron version with all the latest security patches.
  • The architecture of the application is built according to the security guids and best practices.
  • The latest version of the electron-builder is used to compile the application.

Vite Vite version

  • Vite is used to bundle all source code. This is an extremely fast bundler with several great features. You can learn more about how it is arranged in this video.
  • Vite supports reading .env files. This template has a separate command to generate type declaration files with your environment variables.

See all Vite features.

TypeScript TypeScript version (optional)

  • The Latest TypeScript is used for all source code.
  • Vite supports TypeScript out of the box. However, it does not support type checking.
  • Code formatting rules follow the latest TypeScript recommendations and best practices thanks to @typescript-eslint/eslint-plugin.

See this discussion if you want completly remove TypeScript.

React React version (optional)

  • By default, web pages are built using React. However, you can easily change it. Or do not use additional frameworks at all. (See the original repository for a Vue example)
  • Code formatting rules adhere to the default Prettier config.
  • Installed React Developer Tools with React 17 support.

Continuous Integration

There are a few Github Action workflows triggered against PRs or pushes to the main branch.

  • Check types for main, preload, and renderer code
  • Lint all codecode
  • Run automated tests with spectron
    • Has the main window been created, and is it visible?
    • Is the main window not empty?
    • Is devtools closed?

Continuous delivery

  • The release workflow is triggered on every push to the main branch. This workflow creates a release draft.
    • The version is automatically set based on the current date in the format "yy.mm.dd".
    • Notes are automatically generated and added to the release draft.
    • Code signing supported. See the compile job in the release workflow.
  • Auto-update is supported. After a new release is published, all client applications will download the new version and install updates silently.

Status

This template was created to make my work easier. It may not be universal, but I try to keep it that way.

I am actively involved in its development, but I do not guarantee that this template will be maintained in the future.

At the moment, there are the following problems:

  • ⚠ Some files require refactoring.
  • ⚠ Release notes are created automatically based on commit history. .github/actions/release-notes is used for generation. It may not provide some scenarios. If you encounter a problem - write about it.
  • ⏳ I want to migrate all code base to ESM. But because Nodejs ecosystem is unprepared I have not known whether this will give more benefits or more inconvenience.

Some improvement or problems can be listed in issues.

Pull requests are welcome.

How it works

Run npm install to get all the dependencies.

Project Structure

The structure of this template is very similar to the structure of a monorepo.

The entire source code of the program is divided into three modules (packages) that are bundled each independently:

Build web resources

The main and preload modules are built in library mode they are simple Node.js-based, well, libraries. The renderer module is built as full-fledged web app.

Building production web resources is handled by scripts/build.js, which calls vite build sequentially for each package.

Compile App

electron-builder will package and compile a distribution for your desired target platforms (macOS, Windows, and Linux). Auto-update support is included out-of-the-box.

To do this, using the electron-builder:

  • npm run compile: This script is configured to compile the application as quickly as possible. It is not ready for distribution, is compiled only for the current platform and is used for debugging.
  • In GitHub Action: The application is compiled for any platform and ready-to-distribute files are automatically added to the draft GitHub release.

Using Node.js API in renderer

According to Electron's security guidelines, Node.js integration should be disabled for any views that render remote content. This means that you cannot call any Node.js api in the packages/renderer code directly. To do this, you must describe the interface in the packages/preload where Node.js api is allowed:

// packages/preload/src/index.ts
import { readFile } from 'fs/promises';

const api = {
  readConfig: () => readFile('/path/to/config.json', { encoding: 'utf-8' }),
};

contextBridge.exposeInMainWorld('electron', api);
// packages/renderer/src/App.tsx
import { useElectron } from '/@/use/electron';

const { readConfig } = useElectron();

Read more about Security Considerations.

Note: Context isolation disabled for test environment. See #693.

Modes and Environment Variables

All environment variables set as part of the import.meta, so you can access them as follows: import.meta.env.

You can also build type definitions of your variables by running scripts/buildEnvTypes.js. This command will create types/env.d.ts file with describing all environment variables for all modes.

The mode option is used to specify the value of import.meta.env.MODE and the corresponding environment variables files that needs to be loaded.

By default, there are two modes:

  • production is used by default
  • development is used by npm run watch script
  • test is used by npm test script

When running building, environment variables are loaded from the following files in your project root:

.env                # loaded in all cases
.env.local          # loaded in all cases, ignored by git
.env.[mode]         # only loaded in specified env mode
.env.[mode].local   # only loaded in specified env mode, ignored by git

Note: only variables prefixed with VITE_ are exposed to your code (e.g. VITE_SOME_KEY=123) and SOME_KEY=123 will not. you can access VITE_SOME_KEY using import.meta.env.VITE_SOME_KEY. This is because the .env files may be used by some users for server-side or build scripts and may contain sensitive information that should not be exposed in code shipped to browsers.

Contribution

See Contributing Guide.

About

Secure boilerplate for Electron app based on Vite. TypeScript + Vue/React/Angular/Svelte/Vanilla

License:MIT License


Languages

Language:TypeScript 66.5%Language:JavaScript 32.9%Language:HTML 0.5%Language:CSS 0.1%