Bringing Electron applications to millions of Linux users
Alan Pope
on 26 July 2018
Tags: Electron , snapcraft.io
Electron is one of the most popular frameworks for creating cross-platform desktop applications right now. Many developers use electron-builder to do the heavy-lifting of package management for their Electron apps.
electron-builder
has support for creating snap packages out of the box. Bringing your Electron desktop app to Linux can be as simple as a one-line change in your package.json
. Here we’ll use an existing application – BitWarden – to show you how.
BitWarden is a cross-platform password store featuring secure cloud sync across their desktop and mobile clients. The desktop client is available for Linux in the snap store.
The source for BitWarden is on GitHub, but that’s not a requirement for building snaps. It just makes it easier for us to point out how they implemented the snap build. BitWarden are currently using electron builder 20.8.1 or later,
"devDependencies": { ⋮ "electron-builder": "^20.8.1", ⋮ }
In the "linux"
section of the package.json the BitWarden developers added a 'snap'
build target. This is alongside the other build targets the developers have chosen to support.
"linux": { "category": "Utility", "synopsis": "A secure and free password manager for all of your devices.", "target": [ "deb", "freebsd", "rpm", "AppImage", "snap" ] }
For many electron applications this one line is enough to generate a working snap! Simply build as you normally do either locally or using a remote service such as Travis or CircleCI and this will produce a snap.
electron-builder
exposes additional snap features via an optional 'snap'
stanza in the package.json
. For example the BitWarden application requires an additional interface to access the password management service, and an additional package to be staged inside the snap.
Interfaces are comprised of plugs and slots at each end, so the term ‘plugs’ allows you to specify a list of interfaces you want to enable in the snap. The 'stagePackages'
section allows you to specify debs from the Ubuntu 16.04 archive which will be pulled into the snap at build time.
"snap": { "confinement": "strict", "plugs": [ "default", "password-manager-service" ], "stagePackages": [ "default", "libsecret-1-0" ] }
That’s it! The full package.json can be found in the BitWarden GitHub repo.
The community of developers building snap, snapcraft and snaps hang out on the snapcraft forums. Join us!
Ubuntu desktop
Learn how the Ubuntu desktop operating system powers millions of PCs and laptops around the world.
Newsletter signup
Related posts
Three ways to package your Electron apps as snaps
Software comes in many shapes and forms. One of the popular cross-platform, cross-architecture frameworks for building and distributing applications in...
Creating Snaps on Ubuntu Touch
This article was written in collaboration with Alfred E. Neumayer of the UBports Project. Tablets, phones and current technology’s capabilities are...
Managing software in complex network environments: the Snap Store Proxy
As enterprises grapple with the evolving landscape of security threats, the need to safeguard internal networks from the broader internet is increasingly...