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.
-
Clone the repository:
git clone https://github.com/bitwarden/clients.git
-
Install the dependencies:
cd clients
npm ciinfoYou should only ever install dependencies from the root of the repository. Don't try to install dependencies for individual client applications.
-
Configure git blame to ignore certain commits (generally administrative changes, such as formatting):
git config blame.ignoreRevsFile .git-blame-ignore-revs
-
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.