@electric-sql/client
v1.2.0
Published
Postgres everywhere - your data, in sync, wherever you need it.
Readme
TypeScript client for ElectricSQL
Real-time Postgres sync for modern apps.
Electric provides an HTTP interface to Postgres to enable a massive number of clients to query and get real-time updates to subsets of the database, called Shapes. In this way, Electric turns Postgres into a real-time database.
The TypeScript client helps ease reading Shapes from the HTTP API in the browser and other JavaScript environments, such as edge functions and server-side Node/Bun/Deno applications. It supports both fine-grained and coarse-grained reactivity patterns — you can subscribe to see every row that changes, or you can just subscribe to get the whole shape whenever it changes. The client also supports dynamic options through function-based params and headers, making it easy to handle auth tokens, user context, and other runtime values.
Install
The client is published on NPM as @electric-sql/client:
npm i @electric-sql/clientHow to use
The client exports a ShapeStream class for getting updates to shapes on a row-by-row basis as well as a Shape class for getting updates to the entire shape.
ShapeStream
import { ShapeStream } from '@electric-sql/client'
// Passes subscribers rows as they're inserted, updated, or deleted
const stream = new ShapeStream({
url: `${BASE_URL}/v1/shape`,
params: {
table: `foo`,
},
})
// You can also add custom headers and URL parameters
const streamWithParams = new ShapeStream({
url: `${BASE_URL}/v1/shape`,
headers: {
Authorization: 'Bearer token',
},
params: {
table: `foo`,
'custom-param': 'value',
},
})
stream.subscribe((messages) => {
// messages is an array with one or more row updates
// and the stream will wait for all subscribers to process them
// before proceeding
})Shape
import { ShapeStream, Shape } from '@electric-sql/client'
const stream = new ShapeStream({
url: `${BASE_URL}/v1/shape`,
params: {
table: `foo`
}
})
const shape = new Shape(stream)
// Returns promise that resolves with the latest shape data once it's fully loaded
await shape.rows
// passes subscribers shape data when the shape updates
shape.subscribe(({ rows }) => {
// rows is an array of the latest value of each row in a shape.
}Error Handling
The ShapeStream provides robust error handling with automatic retry support:
1. Stream-level error handler with retry control
The onError handler gives you full control over error recovery:
const stream = new ShapeStream({
url: `${BASE_URL}/v1/shape`,
params: { table: `foo` },
onError: (error) => {
console.error('Stream error:', error)
// IMPORTANT: Return an object to keep syncing!
// Return void/undefined to stop syncing permanently.
// Note: 5xx errors and network errors are automatically retried,
// so onError is mainly for handling client errors (4xx)
if (error instanceof FetchError) {
if (error.status === 401) {
// Unauthorized - refresh token and retry
const newToken = getRefreshedToken()
return {
headers: {
Authorization: `Bearer ${newToken}`,
},
}
}
if (error.status === 403) {
// Forbidden - maybe change user context
return {
params: {
table: `foo`,
where: `user_id = $1`,
params: [fallbackUserId],
},
}
}
}
// Stop syncing for other errors (return void)
},
})Critical: The onError callback's return value controls whether syncing continues:
- Return an object (even empty
{}) to retry syncing:{}- Retry with same params and headers{ params }- Retry with modified params{ headers }- Retry with modified headers{ params, headers }- Retry with both modified
- Return void/undefined to stop the stream permanently
The handler supports async operations:
onError: async (error) => {
if (error instanceof FetchError && error.status === 401) {
// Perform async token refresh
const newToken = await refreshAuthToken()
return {
headers: { Authorization: `Bearer ${newToken}` },
}
}
return {} // Retry other errors
}Automatic retries: The client automatically retries 5xx server errors, network errors, and 429 rate limits with exponential backoff. The onError callback is only invoked after these retries are exhausted, or for non-retryable errors like 4xx client errors.
Without onError: If no onError handler is provided, non-retryable errors (like 4xx client errors) will be thrown and the stream will stop.
2. Subscription-level error callbacks
Individual subscribers can handle errors specific to their subscription:
stream.subscribe(
(messages) => {
// Handle messages
},
(error) => {
// Handle errors for this specific subscription
console.error('Subscription error:', error)
}
)Note: Subscription error callbacks cannot control retry behavior - use the stream-level onError for that.
Common Error Types
Setup errors:
MissingShapeUrlError: Missing required URL parameterInvalidSignalError: Invalid AbortSignal instanceReservedParamError: Using reserved parameter names
Runtime errors:
FetchError: HTTP errors during shape fetching (includesstatus,url,headers)FetchBackoffAbortError: Fetch aborted using AbortSignalMissingShapeHandleError: Missing required shape handleParserNullValueError: NULL value in a non-nullable column
See the TypeScript client docs for more details.
And in general, see the docs website and examples for more information.
Develop
Install the pnpm workspace at the repo root:
pnpm installBuild the package:
cd packages/typescript-client
pnpm buildTest
In one terminal, start the backend running:
cd ../sync-service
mix deps.get
mix stop_dev && mix compile && mix start_dev && iex -S mixThen in this folder:
pnpm test