5ae7490478
* adding more testable assets to the desktop build * fixing typo * renaming job * fixing loading safari extension * Fix typo * Update workflows to use new Node caching * Move checkout actions to beginning of jobs * Add Run ID to key for Node cache * Add Runner OS to cache actions * Fix build commands by putting 'npx' in front * Update builds to use other scripts in package.json * Set up keychain for macos-package-dev * Add 'Increment version' step to build workflow * Disable MacOS dev build. Test other MacOS builds * Add provisioning profile steps to other MacOS builds * Remove test branch code Co-authored-by: Joseph Flinn <joseph.s.flinn@gmail.com> |
||
---|---|---|
.github | ||
.vscode | ||
jslib@b1d9b84eae | ||
patches | ||
resources | ||
scripts | ||
src | ||
stores | ||
.editorconfig | ||
.gitignore | ||
.gitmodules | ||
.nvmrc | ||
CONTRIBUTING.md | ||
crowdin.yml | ||
gulpfile.js | ||
ISSUE_TEMPLATE.md | ||
LICENSE.txt | ||
package-lock.json | ||
package.json | ||
README.md | ||
SECURITY.md | ||
sign.js | ||
tsconfig.json | ||
tsconfig.renderer.json | ||
tslint.json | ||
webfonts.list | ||
webpack.main.js | ||
webpack.renderer.js |
Bitwarden Desktop Application
The Bitwarden desktop app is written using Electron and Angular. The application installs on Windows, macOS, and Linux distributions.
Build/Run
Requirements
- Node.js v14.17 or greater
- NPM v7
- Windows users: 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.
Run the app
npm install
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.
Contribute
Code contributions are welcome! Please commit any pull requests against the master
branch. Learn more about how to contribute by reading the CONTRIBUTING.md
file.
Security audits and feedback are welcome. Please open an issue or email us privately if the report is sensitive in nature. You can read our security policy in the SECURITY.md
file.