Skip to content
Bitwarden Logo

Web Clients

This section contains development information for each of the Bitwarden Typescript client applications:

In this context, “clients” generally refers to the Typescript clients, which are located in the clients mono-repository.

Requirements

Before you start, you should have Node and npm installed. See the Tools and Libraries page for more information.

Setup instructions

Before doing work on any of the clients, you need to clone and setup the clients mono-repository.

  1. Clone the repository:
Terminal window
git clone https://github.com/bitwarden/clients.git
  1. Install the dependencies:
Terminal window
cd clients
npm ci
  1. Configure git blame to ignore certain commits (generally administrative changes, such as formatting):
Terminal window
git config blame.ignoreRevsFile .git-blame-ignore-revs
  1. Open the clients.code-workspace file in Visual Studio Code. This has been configured to use multi-root workspaces to improve your development experience. Each client will appear as its own workspace in the Explorer panel on the left-hand side.

You’re now ready to continue with any additional instructions for the particular client you want to work on.