TypeDB Studio
January 8, 2026 ยท View on GitHub
TypeDB Studio
TypeDB Studio is an interactive visual environment for managing and querying TypeDB databases.
With Studio, database users can efficiently manage databases, execute queries, and explore query results, all within a unified environment.
Quickstart
Connect to TypeDB
Select TypeDB edition below, and follow the instructions:
Cloud
- In the TypeDB Cloud website, navigate to your cluster and click Connect. Then, click Connect with TypeDB Studio. This will launch TypeDB Studio.
- Fill in your password and hit Connect. Your password can be found in your downloaded credentials file (if you have one).
Enterprise
- Launch TypeDB Studio.
- Enter the address of the HTTP endpoint of your cluster. By default, this is at port 8000.
- Enter your username and password.
- Click
Connect.
Community Edition
- Launch TypeDB Studio.
- Enter the address of the HTTP endpoint of your cluster. By default, this is at port 8000 and for local instances you can use
http://localhost:8000. - Enter your username and password - defaults are
adminandpassword. - Click
Connect.
Select a database
To select a database to work with, use the dropdown menu on the right of the database icon in the top toolbar. You can also create new databases here.
TypeDB Studio will automatically select a default database if there are no others present.
Build from source
TypeDB Studio is a Web application powered by Angular, with desktop application support provided by Tauri.
There is a wide variety of Web toolchains; the process below is one way to compile TypeDB Studio from source.
Install toolchains and dependencies
First, install nvm on MacOS or Linux, nvm-windows on Windows. Then:
nvm install 22.16.0
nvm use 22.16.0
npm install --global corepack@0.17.0
corepack enable
corepack prepare pnpm@10.12.1 --activate
pnpm i -g @angular/cli
pnpm i
(Optional) Install Rust. Only required if you want to compile as a desktop application.
Launch local development server (Angular)
ng serve --open
Other build commands
Launch Tauri server for local development of desktop app:
npx tauri dev
Build web app distribution:
pnpm build
Build desktop app distribution:
npx tauri build
Instructions are accurate at the time of writing (25 Jun 2025); see .circleci/config.yml and .circleci/prepare.bat for the most up-to-date build process that we use in our CircleCI automation.
