This is a secure template for electron applications. Written following the latest safety requirements, recommendations and best practices.
Under the hood is used [Vite 2.0][vite] — super fast, nextgen bundler, and [electron-builder] for compilation.
By default, the Svelte framework is used for the interface.
.env
files. My template has a separate command to generate .d.ts
file with type definition your environment variables.Vite provides you with many useful features, such as: TypeScript
, CSS/JSON Importing
, CSS Modules
, Web Assembly
and much more.
.ts
and .svelte
files thanks to [svelte-check].The template required a minimum dependencies. Only Vite is used for building, nothing more.
As per the security requirements, context isolation is enabled in this template.
Context Isolation is a feature that ensures that both your
preload
scripts and Electron's internal logic run in a separate context to the website you load in awebContents
. This is important for security purposes as it helps prevent the website from accessing Electron internals or the powerful APIs your preload script has access to.This means that the
window
object that your preload script has access to is actually a different object than the website would have access to. For example, if you setwindow.hello = 'wave'
in your preload script and context isolation is enabledwindow.hello
will be undefined if the website tries to access it.
Read more about Context Isolation.
Exposing APIs from your preload script
to the renderer is a common usecase and there is a dedicated module in Electron to help you do this in a painless way.
// /src/preload/index.ts
const api = {
data: ['foo', 'bar'],
doThing: () => ipcRenderer.send('do-a-thing')
}
contextBridge.exposeInMainWorld('electron', api)
To access this API use the useElectron()
function:
// /src/renderer/App.svelte
import {useElectron} from '/@/use/electron'
const {doThing, data} = useElectron()
Note: Context isolation disabled for test
environment. See #693.
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 bin/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 defaultdevelopment
is used by npm run watch
scripttest
is used by npm test
scriptWhen 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.
src
Contains all source code.src/main
Contain entrypoint for Electron main script.src/renderer
Contain entrypoint for Electron web page. All files in this directory work as a regular Svelte application.src/preload
Contain entrypoint for custom script. It uses as preload
script in BrowserWindow.webPreferences.preload
. See Checklist: Security Recommendations.src/*
It is assumed any entry points will be added here, for custom scripts, web workers, webassembly compilations, etc.dist
dist/source
Contains all bundled code.dist/source/main
Bundled main entrypoint.dist/source/renderer
Bundled renderer entrypoint.dist/source/preload
Bundled preload entrypoint.dist/source/*
Bundled any custom files.dist/app
Contain packages and ready-to-distribute electron apps for any platform. Files in this directory created using [electron-builder].config
Contains various configuration files for Vite, TypeScript, electron builder, etc.bin
It is believed any scripts for build the application will be located here.types
Contains all declaration files to be applied globally to the entire projecttests
Contains all testsThis project requires Node 14 or later.
npm install
to install all dependenciesnpm run compile
npm run watch
npm test