From 4e852036c5bc7a8bffd37b10ca567b30144a9cba Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Wed, 25 Jun 2025 18:38:35 +0300 Subject: [PATCH] bindings/javascript: Drop README.md The example is wrong (imports wrong package), but also duplicates text from top-level README.md that will change. Let's drop this for now to avoid confusion. --- bindings/javascript/README.md | 36 ----------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 bindings/javascript/README.md diff --git a/bindings/javascript/README.md b/bindings/javascript/README.md deleted file mode 100644 index 652723e14..000000000 --- a/bindings/javascript/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# Limbo - -Limbo is a _work-in-progress_, in-process OLTP database engine library written in Rust that has: - -* **Asynchronous I/O** support on Linux with `io_uring` -* **SQLite compatibility** [[doc](COMPAT.md)] for SQL dialect, file formats, and the C API -* **Language bindings** for JavaScript/WebAssembly, Rust, Go, Python, and [Java](bindings/java) -* **OS support** for Linux, macOS, and Windows - -In the future, we will be also working on: - -* **Integrated vector search** for embeddings and vector similarity. -* **`BEGIN CONCURRENT`** for improved write throughput. -* **Improved schema management** including better `ALTER` support and strict column types by default. - -## Install - -```sh -npm i @tursodatabase/limbo -``` - -## Usage - -```js -import { Database } from 'limbo-wasm'; - -const db = new Database('sqlite.db'); -const stmt = db.prepare('SELECT * FROM users'); -const users = stmt.all(); -console.log(users); -``` - -## Documentation - -- [API Docs](https://github.com/tursodatabase/limbo/blob/main/bindings/javascript/docs/API.md) -