Skip to content

clockworklabs/SpacetimeDB

Repository files navigation

SpacetimeDB Logo SpacetimeDB Logo

SpacetimeDB SpacetimeDB

Multiplayer at the speed of light.

         

     

Discord   Twitter   Github   Twitch   YouTube   LinkedIn   StackOverflow


What is SpacetimeDB?

You can think of SpacetimeDB as both a database and server combined into one.

It is a relational database system that lets you upload your application logic directly into the database by way of fancy stored procedures called "modules."

Instead of deploying a web or game server that sits in between your clients and your database, your clients connect directly to the database and execute your application logic inside the database itself. You can write all of your permission and authorization logic right inside your module just as you would in a normal server.

This means that you can write your entire application in a single language, Rust, and deploy it as a single binary. No more microservices, no more containers, no more Kubernetes, no more Docker, no more VMs, no more DevOps, no more infrastructure, no more ops, no more servers.

SpacetimeDB Architecture

SpacetimeDB application architecture
(elements in white are provided by SpacetimeDB)

It's actually similar to the idea of smart contracts, except that SpacetimeDB is a database, has nothing to do with blockchain, and is orders of magnitude faster than any smart contract system.

So fast, in fact, that the entire backend of our MMORPG BitCraft Online is just a SpacetimeDB module. We don't have any other servers or services running, which means that everything in the game, all of the chat messages, items, resources, terrain, and even the locations of the players are stored and processed by the database before being synchronized out to all of the clients in real-time.

SpacetimeDB is optimized for maximum speed and minimum latency rather than batch processing or OLAP workloads. It is designed to be used for real-time applications like games, chat, and collaboration tools.

This speed and latency is achieved by holding all of application state in memory, while persisting the data in a write-ahead-log (WAL) which is used to recover application state.

Installation

SpacetimeDB is an embedded database library that you can use to extend your own applications. You can also run SpacetimeDB as a standalone database server via the spacetime CLI tool.

You can install and run the spacetime CLI tool via Cargo, Homebrew, Docker, or by downloading the binary directly from our website.

Install on macOS

You can install SpacetimeDB on macOS using Homebrew. This will install the spacetime CLI tool and the SpacetimeDB standalone server as a single executable. You can also install on macOS using the Linux instructions below.

brew install clockworklabs/tap/spacetime

Install on Linux

Installing SpacetimeDB on Linux (or other Unix operating systems) is as easy as downloading the binary and running it. You can also install on Linux using the Docker instructions below.

curl --proto '=https' --tlsv1.2 -sSf https://install.spacetimedb.com | sh

Install on Windows

Run the following command in your terminal and follow the on-screen instructions to install the spacetime CLI tool and the SpacetimeDB standalone server as a single executable.

iwr https://windows.spacetimedb.com -useb | iex

Install with Cargo

If you'd like to build the spacetime CLI tool from source, you can install it using Cargo.

cargo install spacetimedb-cli

Installing from Source

For MacOS and Linux this is straightforward. Just run the following commands in a terminal:

# Install rustup, you can skip this step if you have cargo and the wasm32-unknown-unknown target already installed.
curl https://sh.rustup.rs -sSf | sh
# Clone SpacetimeDB
git clone https://github.com/clockworklabs/SpacetimeDB
# Build and install the CLI
cd SpacetimeDB
cargo install --path ./crates/cli --locked

Windows may require some extra dependencies be installed, including openssl and a specific version of perl. A guide for this will be available soon.

Running with Docker

You can execute the spacetime CLI tool using Docker to run the SpacetimeDB standalone server without needing to install any command-line tools or other dependencies.

docker run --rm --pull always --name spacetimedb -p 3000:80 clockworklabs/spacetimedb:latest start

Documentation

For more information about SpacetimeDB, getting started guides, game development guides, and reference material please see our documentation.

Getting Started

We've prepared several getting started guides in each of our supported languages to help you get up and running with SpacetimeDB as quickly as possible. You can find them on our docs page.

In summary there are only 4 steps to getting started with SpacetimeDB.

  1. Install the spacetime CLI tool.
  2. Start a SpacetimeDB standalone node with spacetime start.
  3. Write and upload a module in one of our supported module languages.
  4. Connect to the database with one of our client libraries.

You can see a summary of the supported languages below with a link to the getting started guide for each.

Language Support

You can write SpacetimeDB modules in a bunch of popular languages, with many more to come in the future!

Serverside Libraries

Client Libraries

License

SpacetimeDB is licensed under the BSL 1.1 license. This is not an open source or free software license, however, it converts to the AGPL v3.0 license with a linking exception after a few years.

Note that the AGPL v3.0 does not typically include a linking exception. We have added a custom linking exception to the AGPL license for SpacetimeDB. Our motivation for choosing a free software license is to ensure that contributions made to SpacetimeDB are propagated back to the community. We are expressly not interested in forcing users of SpacetimeDB to open source their own code if they link with SpacetimeDB, so we needed to include a linking exception.