- β‘ Auto reloads/restarts electron on changes to the main/renderer code or nuxt server restarts.
- π Api calls are proxied to the server.
- :start: Route paths are not touched. Does not require static builds or changing baseURL/buildAssetsDir.
- βοΈ Trims server and non-electron routes from the electron bundle.
- π Modifies directory structure for easier multi-platform builds.
- π οΈ Helpful Tools/Composables
isElectron
- Electron Only
useRuntimeConfig().public
(viauseNuxtRuntimeConfig
)registerDevtoolsShortcuts
useDevDataDir
(reroute the user data dir to a local folder during dev for easier development)ElectronWindowControls
component for completely custom window controls.- Various helpers for setting up apis such as:
createBroadcasters/createBroadcastHandlers
for sending messages to all windows.createWindowControlsApi
for calling close/minimize/maximize/pin from the renderer and anElectronWindowControls
component for rending a basic set.promisifyApi
(preload) andpromisifyReply
(main) for easily creating and handling apis in the preload script.
- See also @witchcraft/nuxt-logger for electron logging utilities.
There is a playground available but it only works locally due to electron.
pnpx nuxi module add @witchcraft/nuxt-electron
The library installs the @witchcraft/ui module to use it's css config and twMerge.
If using the components, you should add the library to your tailwind css as a source:
@source "../../../.nuxt/witchcraft-electron.css";
A directory structure like the following is suggested:
.dist/ (I prefer .dist over dist so it stays hidden and at the top)
ββ [platform]
ββ .output (nuxt output)
ββ release
ββ ${productName}_${version}.${ext}
ββ build (for any intermediate builds like electron's)
app/ - nuxt code
app-electron/ - contains all the main/renderer code
Usage of nuxt 4's new directory structure is recommended.
For whatever electron builder you want to use, you must point it at the correct directories.
For electron-builder
with the default directories the module uses and to have all the artifacts in one folder, add:
{
"directories": {
"output": ".dist/electron/release"
},
"files": [
".dist/electron/build/**/*",
".dist/electron/.output/public/**/*"
],
"linux": {
"artifactName": "${productName}_${version}.${ext}",
// ...
},
"mac": {
"artifactName": "${productName}_${version}.${ext}",
// ...
},
"win": {
"artifactName": "${productName}_${version}.${ext}"
// ...
},
}
Add the following to the package.json:
By default the module will not open electron. You must set process.env.AUTO_OPEN
to include the string electron
or set autoOpen
in the options to true, hence the seperate dev:electron
script.
The idea is if you use other platform modules as well, you'd do AUTO_OPEN=electron,android
, etc. for each module you wanted to actually have auto open.
Note that preview:electron
requires preview
be run at the same time to see how the /api
route gets correctly proxied (to localhost in this case, see main.ts
code below for how this is accomplished). In production, as configured below, PUBLIC_SERVER_URL
will do nothing.
{
"scripts": {
"preview:electron:dev": "concurrrently --kill-others \" npm run dev\" \"PUBLIC_SERVER_URL=http://localhost:3000 electron .\"",
"preview:electron:prod": "electron .\""
}
}
In main to get the correct paths during build and dev, use the getPaths
helper.
To get the dev user data dir, use the useDevDataDir
helper.
We also need to create the nuxt file://
protocol handler for every window and configure the proxies for server calls.
// main.ts
import { getPaths, useDevDataDir, createNuxtFileProtocolHandler } from "@witchcraft/nuxt-electron/electron"
const paths = getPaths()
const userDataDir = useDevDataDir() ?? app.getPath("userData")
// when creating a window later
const win = new BrowserWindow({
title: "...",
webPreferences: {
preload: paths.preloadPath
}
})
// proxy /api requests to the real server
const proxies = {
"/api": paths.publicServerUrl,
}
// for every session partition
createNuxtFileProtocolHandler(win.webContents.session, paths.nuxtDir, proxies)
await win.loadURL(paths.windowUrl)
export default defineNuxtConfig({
modules: [
"@witchcraft/nuxt-electron",
],
electron: {
additionalElectronVariables: {
// required for getPaths to work in production, see it for details
publicServerUrl: process.env.NODE_ENV === "production"
? `"mysite.com"`
: `undefined`
}
}
})
A full example, including usage with @witchcraft/nuxt-logger
is available in the playground.
NOTE: The proxies only work for api calls. They do not work for pages.
Proxying server only page routes seems possible but complicated because each route's resource calls must also be proxied. I don't think it's worth the pain. It's easier to make sure the electron app never accesses server only routes.
Anywhere in electron's renderer files you can also now use nuxt's public runtime config (only the public, you don't want to expose your server secrets to the electron app at all).
import { useNuxtRuntimeConfig } from "@witchcraft/nuxt-electron/electron"
const publicRuntimeConfig = useNuxtRuntimeConfig()
To be absolutely sure we are in electron, in electron's preload script define electron
on the window:
// preload.ts
contextBridge.exposeInMainWorld("electron", { })
This way the composable can then check if the global exists.
An isomorphic logger is also available for electron, see @witchcraft/nuxt-logger. The playground in this module includes it as an example.
A script is provided for use with electron-builder to generate a dev desktop file for linux.
It will create a desktop file named dev-YOURAPPNAME.desktop
, put it in ~/.local/share/applications/
and re-install it with xdg-desktop-menu un/install
.
The desktop's exec is set to run bash, cd into the project dir and run npm run launch:electron
. You can pass a second parameter to the script to use a different package.json script.
This is useful for when registering deep links in the app as these require a desktop file to work on linux.
Note that while nuxt's path aliases are passed to the electron vite config, you cannot use other nuxt paths (such as those added by modules, e.g. #somemodule
) in electron. This is why a seperate @witchcraft/nuxt-electron/electron
export is provided.
Electron is pointed to the localhost server and sees a similar view to the web app except we must client side detect we're on electron and redirect to the electronRoute
.
Normally nuxt has to be configured to output a SPA by setting ssr: false
and you have to modify baseURL and buildAssetsDir for everything to work (among other changes, see nuxt-electron module for the typical changes).
But this module has gone a different route.
First for production only changes, we run the nuxt config with a different env variable to enable electron only, production only options (such as route trimming, see Electron Route).
Then we use a custom protocol to proxy requests and api calls.
Electron uses the file://
protocol to load all scripts/assets/etc.
This does not work well with the default nuxt config so we use use a custom protocol handler to intercept all file://
requests and correctly route them so that we don't have to be changing nuxt's baseURL and buildAssetsDir.
In electron we want to point to a different route, /{electronRoute}
, so we can trim other routes from the bundle.
To do this we prerender the /{electronRoute}
route and point electron to /{electronRoute}/index.html
.
- This used to require changing baseURL and buildAssetsDir to "./" and "/" respectively, but with the new file://
handler it now works perfectly.
We then need to remove unwanted routes from the bundle which are included regardless of whether they're used. So for the web app, remove electron routes, and for the electron app, remove web app routes. This is done through a nuxt hook in the nuxt config on production builds only.
Note we would ideally also remove "/" from the prerender, but this requires manually splitting chunks by pages and I was having issues with this.
A routeRules
redirect won't work, because it will trigger a request to electron's file protocol handler which we don't know what to do with.
A redirect from a page (e.i. if (process.client && isElectron) { navigateTo("/app") }
) works, but it takes a little big of time to navigate. This is still needed for development redirecting, but not in production.
Building for electron requires lots of changes to the config. We can't just build for web then copy. So this module reroutes the output when building the web app (and reroutes it differently when building for electron (see directory sturcture above).
The use out the nested .output is because nuxt preview will add this automatically even if we set a custom cwd. This was we can do nuxt preview .dist/platform
though it might often not be of much help.
To build for electron you must set process.env.BUILD_ELECTRON
to true, to do the configuration required to make the final output actually work with electron.
The electron app itself is "built" in two parts, the "build" and the "packing".
First the the nuxt app (.dist/electron/.output
) and the electron main/preload bundles (.dist/electron/build
) are built.
Then the script build:electron:pack
is run (configurable).
The module does not run electron-builder directly since you could be packing the app in some other way.
Note that nuxt builds the server anyways, it's just not packed into the final app if you configure your packer correctly.
Your packer should then create the final executables (into .dist/electron/release
).