Connecting
Quickstart
Current connect-flow steps from client install to basic connection verification.
The current dashboard connect flow is organized into three steps.
1. Install a TigerBeetle client
The UI currently suggests official TigerBeetle client libraries for:
- Go
- Java
- Node.js
- .NET
- Python
Example:
npm install tigerbeetle-node2. Configure the connection
Use the gateway URL shown in the dashboard. The current UI treats that gateway URL as the cluster address for client setup.
Example Go snippet:
client, err := tb.NewClient(tb.ClientConfig{
ClusterID: [16]byte{},
Addresses: []string{"<gateway-url>"},
})3. Verify the connection
Run a lightweight lookup:
accounts, err := client.LookupAccounts([]tb.ID{})
if err != nil {
log.Fatal("connection failed:", err)
}
fmt.Println("Connected successfully!")Notes
- the product does not ship a separate Parix SDK today
- the connect flow uses TigerBeetle client concepts directly
- for HTTP-native access patterns, see Gateway