Skip to content

electric-sql/electric

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7cf3f38 · Sep 26, 2024
Aug 8, 2024
Sep 25, 2024
Sep 17, 2024
Sep 24, 2024
Sep 16, 2024
Sep 16, 2024
Sep 26, 2024
Sep 23, 2024
Jul 3, 2024
Sep 6, 2024
Aug 6, 2024
Jul 30, 2024
Aug 14, 2024
Aug 14, 2024
Aug 20, 2024
Jul 18, 2024
Jul 4, 2024
Sep 15, 2024
Sep 17, 2024
Sep 7, 2024
Sep 7, 2024
Jul 29, 2024
Jul 29, 2024

Repository files navigation

ElectricSQL logo

License - Apache 2.0 Status - Alpha Chat - Discord

Electric

Your Postgres data, in sync, wherever you need it.

Quick links

What is Electric?

Electric provides an HTTP API for syncing Shapes of data from Postgres. This can be used directly or via client libraries and integrations.

This looks a bit different than the last time I visited?

We started a clean rebuild of the sync engine in July 2024. One that's informed by the lessons learned building the previous system. See James' blog post for background on the change.

Getting Started

See the Quickstart guide to get up and running. In short, you need to:

  1. have a Postgres database with logical replication enabled; and then to
  2. run Electric in front of it, connected via DATABASE_URL

For example, using Docker Compose from the root of this repo:

docker compose -f .support/docker-compose.yml up

You can then use the HTTP API to sync data from your Postgres. For example, to start syncing the whole foo table:

curl -i 'http://localhost:3000/v1/shape/foo?offset=-1'

Or use one of the clients or integrations, such as the useShape React hook:

import { useShape } from '@electric-sql/react'

function Component() {
  const { data } = useShape({
    url: `http://localhost:3000/v1/shape/foo`,
    where: `title LIKE 'foo%'`,
  })

  return JSON.stringify(data)
}

Again, see the Quickstart and the Docs for more details.

HTTP API Docs

The HTTP API is defined in an OpenAPI spec in website/electric-api.yaml.

Developing Electric

We're using asdf to install Elixir, Erlang, and Node.js. Versions are defined in .tool-versions.

Mac setup

brew install asdf
asdf plugin-add nodejs elixir erlang
asdf install

You'll probably need to fiddle with your bash/zsh/etc rc file to load the right tool into your environment.

Contributing

See the:

Support

We have an open community Discord. Come and say hello and let us know if you have any questions or need any help getting things running.

It's also super helpful if you leave the project a star here at the top of the page☝️