The desktop vault (Windows, macOS, & Linux).
Go to file
Vince Grassia 75dd947153 Copy from monorepo 2022-06-08 11:50:19 -04:00
.github Rust improvements (#1495) 2022-05-05 16:01:09 +02:00
.husky Make husky pre-commit hook executable (#1295) 2022-02-08 08:33:25 +10:00
.vscode Apply Prettier (#1202) 2021-12-20 15:47:17 +01:00
desktop_native Rust improvements (#1495) 2022-05-05 16:01:09 +02:00
jslib@80c834b52a [PS-106] update jslib (#1530) 2022-05-05 17:11:39 +02:00
resources Update macOS icon to follow Big Sur design (#837) 2022-03-29 20:56:03 +02:00
scripts Add utils for testing updating processes (#1448) 2022-03-24 21:23:29 +01:00
src Copy from monorepo 2022-06-08 11:50:19 -04:00
stores Copy from monorepo 2022-06-08 11:50:19 -04:00
.editorconfig Add Prettier configuration (#1201) 2021-12-20 14:17:39 +01:00
.eslintignore Rust improvements (#1495) 2022-05-05 16:01:09 +02:00
.eslintrc.json Add eslint (#1369) 2022-02-24 20:50:19 +01:00
.git-blame-ignore-revs Fix .git-blame-ignore-revs filename (#1207) 2021-12-21 17:05:54 +01:00
.gitattributes Apply Prettier (#1202) 2021-12-20 15:47:17 +01:00
.gitignore Add script for downloading legacy safari extension (#796) 2021-03-19 17:18:48 +01:00
.gitmodules submodule via https 2018-02-19 16:26:53 -05:00
.nvmrc Bump node to v16 (#1189) 2021-12-13 17:16:44 +01:00
.prettierignore [BEEEP] Add native rust module (#1379) 2022-04-05 16:54:44 +02:00
.prettierrc.json Add Prettier configuration (#1201) 2021-12-20 14:17:39 +01:00
README.md Copy from monorepo 2022-06-08 11:50:19 -04:00
SECURITY.md Update SECURITY.md (#1411) 2022-03-15 15:56:26 -04:00
crowdin.yml Copy from monorepo 2022-06-08 11:50:19 -04:00
electron-builder.json Copy from monorepo 2022-06-08 11:50:19 -04:00
installer.nsh Copy from monorepo 2022-06-08 11:50:19 -04:00
package-lock.json Copy from monorepo 2022-06-08 11:50:19 -04:00
package.json Copy from monorepo 2022-06-08 11:50:19 -04:00
sign.js Add eslint (#1369) 2022-02-24 20:50:19 +01:00
tsconfig.json Apply Prettier (#1202) 2021-12-20 15:47:17 +01:00
tsconfig.renderer.json Apply Prettier (#1202) 2021-12-20 15:47:17 +01:00
webpack.main.js Add keytar to externals (#1520) 2022-05-03 11:03:21 +02:00
webpack.renderer.js [bug] Adjust mode in render webpack.config to variable (#1473) 2022-04-04 10:45:35 -05:00

README.md

Github Workflow build on master Crowdin Join the chat at https://gitter.im/bitwarden/Lobby

Bitwarden Desktop Application

Platforms

The Bitwarden desktop app is written using Electron and Angular. The application installs on Windows, macOS, and Linux distributions.

Desktop Vault

Build/Run

Requirements

  • Node.js v16.13.1 (LTS) or greater
  • NPM v8
  • Windows:
    • To compile the native node modules used in the app you will need the Visual C++ toolset, available through the standard Visual Studio installer. You will also need to install the Microsoft Build Tools 2015 and Windows 10 SDK 17134 as additional dependencies in the Visual Studio installer.
  • Linux:
    • The following packages build-essential libsecret-1-dev libglib2.0-dev

Run the app

npm ci
npm run electron

Debug Native Messaging

Native Messaging (communication with the browser extension) works by having the browser start a lightweight proxy application baked into our desktop binary. To setup an environment which allows for easy debugging you will need to build the application for distribution, i.e. npm run dist:<platform>, start the dist version and enable desktop integration. This will write some manifests to disk, Consult the native manifests documentation for more details of the manifest format, and the exact locations for the different platforms. Note that disabling the desktop integration will delete the manifests, and the files will need to be updated again.

The generated manifests are pre-configured with the production ID for the browser extensions. In order to use them with the development builds, the browser extension ID of the development build needs to be added to the allowed_extensions section of the manifest. These IDs are generated by the browser, and can be found in the extension settings within the browser.

It will then be possible to run the desktop application as usual using npm run electron and communicate with the browser.