npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

surrealdb

v2.0.8

Published

The official SurrealDB SDK for JavaScript.

Downloads

122,141

Readme

Documentation

View the SDK documentation here.

Learn SurrealDB

  • A Tour of SurrealDB: https://surrealdb.com/learn/tour
  • Aeon's Surreal Renaissance (Interactive book): https://surrealdb.com/learn/book
  • Documentation: https://surrealdb.com/docs

What is this package?

The surrealdb package is the official JavaScript SDK for SurrealDB. It connects to remote SurrealDB instances over WebSocket or HTTP, and supports embedded databases through optional engine plugins.

The SDK provides:

  • Surreal client - connect, authenticate, query, subscribe to live updates, and manage sessions
  • Type-safe query builders - .select(), .create(), .update(), .delete(), and more
  • Bound queries - surql templates and BoundQuery for safe parameterisation
  • Remote engines - ws, wss, http, and https transport out of the box
  • SQON re-exports - all value types, codecs, and core utilities from @surrealdb/sqon

Works in Node.js, Bun, Deno, and browsers. For embedded databases, install an engine plugin separately - see Related packages.

How to install

Install with a package manager

# using npm
npm i surrealdb

# or using pnpm
pnpm i surrealdb

# or using yarn
yarn add surrealdb

# or using bun
bun add surrealdb

You can now import the SDK into your project with:

import { Surreal } from "surrealdb";

Install for the browser with a CDN

For fast prototyping we provide a browser-ready bundle. You can import it with:

import Surreal from "https://unpkg.com/surrealdb";
// or
import Surreal from "https://cdn.jsdelivr.net/npm/surrealdb";

NOTE: this bundle is not optimised for production! So don't use it in production!

Getting started

In the example below you can see how to connect to a remote instance of SurrealDB, authenticate with the database, and issue queries for creating, updating, and selecting data from records.

Don't have a SurrealDB instance yet?

If you don't already have a SurrealDB instance running, you can easily get started by using Surreal Cloud. Simply sign up here to provision a free SurrealDB instance in the cloud. This will allow you to experiment with SurrealDB without any local setup, and you'll be able to connect to your new instance right away.

Connecting

The first step in using the SDK is to instantiate the SurrealDB client, after which you can connect to a SurrealDB instance using a connection URI. After that, select a namespace and database, and sign in as a namespace, database, root, or record user.

Make sure you have created a user before you sign in.

import { Surreal, RecordId, Table } from "surrealdb";

// Instantiate the SurrealDB client
const db = new Surreal();

// Connect to the specified instance
await db.connect("wss://my-instance.aws-euw1.surreal.cloud");

// Select a specific namespace / database
await db.use({
    namespace: "test",
    database: "test",
});

// Sign in as a namespace, database, root, or record user
await db.signin({
    username: "root",
    password: "root",
});

Sending queries

After you have connected to a SurrealDB instance, you can send queries to the database. Queries can be sent in two ways:

  • Type-safe using the query builder methods
  • As a string using the query method

Type-safe query builders

const personTable = new Table("person");

// Create a new person with a random id
let created = await db.create<Person>(personTable, {
    title: "Founder & CEO",
    name: {
        first: "Tobie",
        last: "Morgan Hitchcock",
    },
    marketing: false,
});

// Update a person record with a specific id
let updated = await db.update<Person>(created.id).merge({
    marketing: true,
});

// Select all people records
let people = await db.select<Person>(personTable);

String based queries

const personTable = new Table("person");

// Execute a query and collect the results
let [created] = await db
    .query("CREATE ONLY $table CONTENT $content", {
        table: personTable,
        content: {
            title: "Founder & CEO",
            name: {
                first: "Tobie",
                last: "Morgan Hitchcock",
            },
        },
    })
    .collect<[Person]>();

Subscribing to live queries

You can subscribe to live queries to receive updates when the data in the database changes.

// Subscribe to all records in the person table
const subscription = await db.live(personTable);

// Use an async iterator
for await (const { action, value } of subscription) {
    if (action === "CREATE") {
        console.log("A new person was created:", value);
    }
}

Next steps

We have only scratched the surface of what the JavaScript SDK can do. For more information, please refer to the documentation.

Embedding SurrealDB in the browser

The @surrealdb/wasm engine plugin runs SurrealDB inside a browser - in-memory or persisted to IndexedDB. See the WebAssembly engine readme for worker setup, Vite configuration, and full package details.

npm i @surrealdb/wasm
import { createWasmEngines } from "@surrealdb/wasm";
import { Surreal, createRemoteEngines } from "surrealdb";

const db = new Surreal({
    engines: {
        ...createRemoteEngines(),
        ...createWasmEngines(),
    },
});

await db.connect("mem://");
await db.connect("indxdb://demo");

When using Vite, exclude the WASM package from dependency optimisation and enable top-level await:

optimizeDeps: {
    exclude: ["@surrealdb/wasm"],
    esbuildOptions: {
        target: "esnext",
    },
},
esbuild: {
    supported: {
        "top-level-await": true,
    },
},

Embedding SurrealDB in Node.js, Deno, and Bun

The @surrealdb/node engine plugin embeds SurrealDB in Node.js, Bun, or Deno - in-memory or persisted to disk via RocksDB or SurrealKV. See the Node.js engine readme for connection options and shutdown behaviour.

npm i @surrealdb/node
import { createNodeEngines } from "@surrealdb/node";
import { Surreal, createRemoteEngines } from "surrealdb";

const db = new Surreal({
    engines: {
        ...createRemoteEngines(),
        ...createNodeEngines(),
    },
});

await db.connect("mem://");
await db.connect("rocksdb://path/to/storage.db");
await db.connect("surrealkv://path/to/storage.db");
await db.connect("surrealkv+versioned://path/to/storage.db");

When using the embedded engine, call .close() when you are done to shut down the database cleanly.

Package contents

| Area | Key exports | | --- | --- | | Client | Surreal, SurrealSession, SurrealTransaction | | Query API | .query(), .select(), .create(), .update(), .delete(), .insert(), .upsert(), .relate(), .live() | | Remote engines | createRemoteEngines(), WebSocketEngine, HttpEngine | | Bound queries | surql, BoundQuery, expr, comparison and logical operators | | Value types | RecordId, Table, DateTime, Decimal, Uuid, and more (from @surrealdb/sqon) | | Codecs | CborCodec, JsonCodec, CodecOptions (from @surrealdb/sqon) | | Utilities | equals, jsonify, escapeIdent, s, d, r, u string prefixes | | Errors | SDK error classes and parseRpcError for RPC failures |

Supported environments

ES modules (import) are supported. Node.js builds also expose a CommonJS entry point.

TypeScript

This SDK supports both TypeScript 5 and TypeScript 6. If you are using TypeScript 6, note that the default value for the types compiler option changed from auto-discovering all @types/* packages to []. You may need to explicitly add the types you depend on in your tsconfig.json:

{
    "compilerOptions": {
        "types": ["node"]
    }
}

Learn more

Contributing

This package is part of the surrealdb.js monorepo. See the main README for local setup, build commands, and contribution guidelines.