Fork of vite-electron-builder
Vite + Electron + Svelte = 🔥🔥🔥
This is a Svelte specific fork of a template for secure electron applications. Written following the latest safety requirements, recommendations and best practices.
Under the hood is used Vite — superfast, nextgen bundler, and electron-builder for compilation.
This template is maintained by Alex Kozack. You can 💖 sponsor him for continued development of this template.
This fork is maintained by Herman Lederer. You can 💖 sponsor them for continued mainenance of this Svelte fork.
Found a problem? Pull requests are welcome, but make sure it is is Svelte specific, otherwise consider making a PR to the original repo. The cahnges will be cloned here.
If you have ideas, questions or suggestions - Welcome to discussions of the original repo. 😊
Follow these steps to get started with this template:
.github/workflows
-- it uses npm
by default.That's all you need. 😉
Note: This template uses npm v7 feature — Installing Peer Dependencies Automatically. If you are using a different package manager, you may need to install some peerDependencies manually.
Note: Find more useful forks here.
.env
files. You can also specify types of your environment variables in types/env.d.ts
.Main
and Renderer
processes.Vite provides many useful features, such as: TypeScript
, TSX/JSX
, CSS/JSON Importing
, CSS Modules
, Web Assembly
and much more.
See this discussion if you want completely remove TypeScript.
See examples of web pages for different frameworks.
tests
directory and use playwright.main
branch, the release
workflow starts, which creates a release draft.yy.mm.dd-minutes
.compile
job in the release
workflow.The template requires a minimum amount dependencies. Only Vite is used for building, nothing more.
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 each bundled independently:
packages/main
Electron main script.packages/preload
Used in BrowserWindow.webPreferences.preload
. See Checklist: Security Recommendations.packages/renderer
Electron web page.The main
and preload
packages are built in library mode as it is simple javascript.
The renderer
package builds as a regular web app.
The next step is to package and compile a ready to distribute Electron app for macOS, Windows and Linux with "auto update" support out of the box.
To do this using the electron-builder:
compile
: This script is configured to compile the application as quickly as possible. It is not ready for distribution, it is compiled only for the current platform and is used for debugging.There is one important nuance when working with dependencies. At the build stage Vite will analyze your code, find all the imported dependencies, apply tree shaking, optimize and bundle them inside the output source files. So when you write something like this:
// source.ts
import {createApp} from 'vue'
createApp()
It turns into:
// bundle.js
function createApp() { /* ... */ }
createApp()
Which leaves basically no imports during runtime.
But it doesn't always work. Vite was designed to work with browser-oriented packages. So it is not able to bundle Node built-in modules, or native dependencies, or some Node.js specific packages, or Electron itself.
Modules that Vite is unable to bundle are forced to be supplied as external
in vite.config.js
. External modules are not optimized and their imports remain during runtime.
// source.ts
import {writeFile} from 'fs'
writeFile()
// bundle.js
const {writeFile} = require('fs')
writeFile()
According to Electron's security guidelines, Node.js integration is disabled for remote content. This means that you cannot call any Node.js api in the packages/renderer
directly. This also means you can't import external modules during runtime in the renderer:
// renderer.bundle.js
const {writeFile} = require('fs') // ReferenceError: require is not defined
writeFile()
To use external modules in Renderer you must describe the interface in the packages/preload
where the Node.js api is allowed:
// packages/preload/src/index.ts
import {type BinaryLike, createHash} from 'crypto';
import {exposeInMainWorld} from './exposeInMainWorld';
exposeInMainWorld('nodeCrypto', {
sha256sum(data: BinaryLike) {
const hash = createHash('sha256');
hash.update(data);
return hash.digest('hex');
},
});
If you use a TypeScript you must add the signature of your method to the contracts:
// packages/preload/contracts.d.ts
interface Exposed {
nodeCrypto: {
sha256sum(data: import("crypto").BinaryLike): string;
};
}
And now, you can safely use the registered method:
// packages/renderer/src/App.vue
window.nodeCrypto.sha256sum('data')
As a result, the architecture of interaction between all modules is as follows:
flowchart LR;
R --> W[Web API]
R --> BD[Bundled dependencies]
R[Renderer] -- Call Exposed API --> P[Preload] --> N[Node.js API]
P --> ED[External dependencies]
P --> ER[Electron Renderer Process Modules]
P <-. IPC Messages .-> M[Main] --> EM[Electron Main Process Modules]
Read more about Security Considerations.
All environment variables set as part of the import.meta
, so you can access them as follows: import.meta.env
.
If you are using TypeScript and want to get code completion you must add all the environment variables to the ImportMetaEnv
in types/env.d.ts
.
The mode option is used to specify the value of import.meta.env.MODE
and the corresponding environment variables files that need to be loaded.
By default, there are two modes:
production
is used by defaultdevelopment
is used by npm run watch
scriptWhen running the build script, the 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
To prevent accidentally leaking env variables to the client, only variables prefixed with VITE_
are exposed to your Vite-processed code. e.g. the following file:
DB_PASSWORD=foobar
VITE_SOME_KEY=123
Only VITE_SOME_KEY
will be exposed as import.meta.env.VITE_SOME_KEY
to your client source code, but DB_PASSWORD
will not.
See Contributing Guide.