JavaScript packages to use cr-sqlite
in the browser, node, react and other JS frameworks & environments.
Scaffolding a new project -- https://github.com/vlcn-io/vite-starter/tree/main
Example apps:
- Vite Starter over WebSocket
- Manual REST sync Example
- https://github.com/vlcn-io/live-examples
- Observable Notebook
- WIP Local-First Presentation Editor
import initWasm from "@vlcn.io/crsqlite-wasm";
import wasmUrl from "@vlcn.io/crsqlite-wasm/crsqlite.wasm?url";
const crsqlite = await initWasm(wasmUrl);
const db = await sqlite.open("db-name");
...
db.close();
import Database from "better-sqlite3";
const db = new Database(":memory:");
import { extensionPath } from "@vlcn.io/crsqlite";
db.loadExtension(extensionPath);
...
db.close();
function TodoList() {
const allTodos: readonly Todo[] = useQuery<Todo>(
ctx,
"SELECT * FROM todo ORDER BY id DESC"
).data;
return (
<div>
{allTodos.map((t) => (
<Todo item={t} />
))}
</div>
);
}
See official docs or the vite-starter
- crsqlite: The cr-sqlite loadable extension for use in NodeJS/Deno/Bun. Can be used with the SQLite bindings you currently use.
- crsqlite-wasm: WASM build of CR-SQLite & SQLite for use in the browser.
- client-websocket: Websocket client to sync the browser's database to a database hosted on a websocket server.
- server-websocket: Websocket server implementation.
- Websocket Demo
- HTTP GET & Server Sent Events: https://github.com/vlcn-io/vite-starter
- p2p: A peer to peer networking implementation, based on webrtc
- react: React hooks for driving UI state from database queries
- xplat-api: interfaces for components that can exist in NodeJS or the Browser.
- client-core: Networking code that is common across all client implementations
- client-server-common: Networking code that is common to the client and server
- server-core: Network code that is common across all server implementations
- node-allinone: convenience package for loading and using crsqlite in nodejs
- Can also be used as a run time loadable extension in
nodejs
with whateversqlite
bindings you already use. See thenode-allinone
readme for more details
- Can also be used as a run time loadable extension in
- tsbuild-all: convenient package for building all other packages
- node-tests:
- xplat-tests:
- browser-tests:
If you want to build these projects from source and/or hack on them or contribute, you'll need to clone the workspace repository:
git clone --recurse-submodules git@github.com:vlcn-io/workspace.git
Running make
in that directory will get you set up. Ensure you have the rust nightly toolchain installed and activated before running make.