https://github.com/typedb/typedb-studio
TypeDB Studio (IDE)
https://github.com/typedb/typedb-studio
graph-visualization ide knowledge-base network network-analysis network-visualization schema schema-design typedb typeql visualisation
Last synced: 2 months ago
JSON representation
TypeDB Studio (IDE)
- Host: GitHub
- URL: https://github.com/typedb/typedb-studio
- Owner: typedb
- License: mpl-2.0
- Created: 2019-01-28T15:01:08.000Z (over 6 years ago)
- Default Branch: development
- Last Pushed: 2024-07-25T16:46:55.000Z (11 months ago)
- Last Synced: 2024-10-30T01:37:00.747Z (7 months ago)
- Topics: graph-visualization, ide, knowledge-base, network, network-analysis, network-visualization, schema, schema-design, typedb, typeql, visualisation
- Language: Kotlin
- Homepage: https://typedb.com
- Size: 44 MB
- Stars: 193
- Watchers: 17
- Forks: 43
- Open Issues: 175
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](https://typedb.com/docs/typedb/connecting/studio)
[](https://factory.vaticle.com/typedb/typedb-studio)
[](https://github.com/typedb/typedb-studio/releases/latest)
[](https://typedb.com/discord)
[](https://forum.typedb.com)
[](https://stackoverflow.com/questions/tagged/typedb)
[](https://stackoverflow.com/questions/tagged/typeql)> **IMPORTANT NOTE:** As of March 2025, the TypeDB team is currently working on porting TypeDB Studio to the Web. Early access releases are expected to begin in early April. The new TypeDB Studio will have a web version and will still be downloadable as a desktop app. This is made possible by the recently-launched TypeDB REST API. Stay tuned for further updates!
# Introducing TypeDB Studio
TypeDB Studio is the IDE for developing with **[TypeDB](https://github.com/typedb/typedb)**. It provides a consistent experience across different environments, including macOS, Linux, and Windows. With Studio, developers can easily manage databases, execute queries, and explore query results, all within a unified interface.
- [Install TypeDB Studio](https://typedb.com/docs/home/install-tools#_studio)
- For a quick overview of TypeDB Studio, check out the [manual](https://typedb.com/docs/manual/tools/studio).
- Discover more of TypeDB’s unique [features](https://typedb.com/features).[](./docs/images/create.gif)
## Features
TypeDB Studio helps you get started developing with TypeDB faster:
- Graphical user interface for connecting to TypeDB without the use of command line tools, libraries, or Driver API.
- Database manager to create and delete databases.
- Project file management to store your favorite queries.
- Convenient multi-tab query editor with TypeQL syntax highlighting, auto-saving, query execution, response output,
and pop-up notifications for warnings and error messages that may occur during runtime/query execution.
- Automatic transaction management with full GUI control, including read/write/schema transactions, as
well as transaction control (commit/rollback/close).## Download TypeDB Studio
You can download TypeDB Studio from the [GitHub Releases](https://github.com/typedb/typedb-studio/releases) page.
For more information on how to install and run TypeDB Studio, see the
[Installation guide](https://typedb.com/docs/home/install-tools#_studio).## Compile from source
> Note: For precompiled releases, simply download TypeDB Studio following the _"Download TypeDB Studio"_ section above.
1. Make sure you have the following dependencies installed on your machine:
- Java JDK 11 or higher
- [Bazel 6 or higher](https://bazel.build/install).
2. You can build TypeDB with either one of the following commands, depending on the targeted architecture and
operating system:
```sh
$ bazel run //:studio-bin-mac-arm64
$ bazel run //:studio-bin-mac-x86_64
```
```sh
$ bazel run //:studio-bin-windows-x86_64
```
```sh
$ bazel run //:studio-bin-linux-arm64
$ bazel run //:studio-bin-linux-x86_64
```
You can also replace `run` with `build` in the command above, and Bazel will simply produce the JAR for TypeDB Studio
under `bazel-bin/studio-bin-mac-x86_64.jar` or similar directory, with respect to the chosen OS and architecture.## Useful links
If you want to begin your journey with TypeDB, you can explore the following resources:
* In-depth dive into TypeDB's [philosophy](https://typedb.com/philosophy)
* Our [TypeDB quickstart](https://typedb.com/docs/typedb/quickstart-guide)
* Our [TypeDB Studio documentation](https://typedb.com/docs/manual/tools/studio)
* **[TypeQL](https://github.com/typedb/typeql)**
* **[TypeDB](https://github.com/typedb/typedb)**## Contributions
TypeDB Studio has been built using various open-source frameworks, technologies and communities throughout its
evolution. Today TypeDB Studio is built
using [Kotlin](https://kotlinlang.org),
[Compose Multiplatform](https://github.com/JetBrains/compose-jb),
and [Bazel](https://bazel.build).Thank you!
## Licensing
This software is released under the Mozilla Public License 2.0 (MPL 2.0).
For license information, please see [LICENSE](https://github.com/typedb/typedb-studio/blob/master/LICENSE).