Skip to content

WASM v0.8.0

Choose a tag to compare

@github-actions github-actions released this 06 May 08:48
· 68 commits to main since this release
4e20780

Published to npm: https://www.npmjs.com/package/@joaoh82/sqlrite-wasm/v/0.8.0

npm install @joaoh82/sqlrite-wasm@0.8.0
// Bundler target — works with webpack, vite, rollup, parcel
import init, { Database } from '@joaoh82/sqlrite-wasm';

await init();
const db = new Database();
db.exec("CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)");
db.exec("INSERT INTO users (name) VALUES ('alice')");
const rows = db.query("SELECT id, name FROM users");
// → [{ id: 1, name: 'alice' }]

What's in the package:

  • sqlrite_wasm_bg.wasm — the WebAssembly engine binary
  • sqlrite_wasm.js — auto-generated JS glue (wasm-bindgen)
  • sqlrite_wasm.d.ts — TypeScript types
  • package.json — bundler-target metadata

Build target: bundler (webpack/vite/rollup-friendly).
For web / nodejs / deno targets, build from source via wasm-pack build sdk/wasm --target <target>.

Verify package provenance:

npm audit signatures

See the umbrella release v0.8.0 for the full changelog.

What's Changed

  • feat(sql): JOINs — INNER / LEFT / RIGHT / FULL OUTER (SQLR-5) by @joaoh82 in #99
  • Release v0.8.0 by @github-actions[bot] in #100

Full Changelog: sdk/go/v0.7.0...sqlrite-wasm-v0.8.0