From a531f635cf355296ab5ba0211591acfc52e9fdcf Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 10 Feb 2025 19:11:28 +0200 Subject: [PATCH] Update README.md --- README.md | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 5ad411090..c9f8dac95 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,9 @@ In the future, we will be also working on: ## Getting Started -### 💻 Command Line - +
+💻 Command Line +
You can install the latest `limbo` release with: ```shell @@ -68,11 +69,11 @@ You can also build and run the latest development version with: ```shell cargo run ``` +
-### ✨ [JavaScript](https://www.npmjs.com/package/limbo-wasm) (wip) - -Installation: - +
+✨ JavaScript +
```console npm i limbo-wasm ``` @@ -87,8 +88,11 @@ const stmt = db.prepare('SELECT * FROM users'); const users = stmt.all(); console.log(users); ``` +
-### 🐍 [Python](https://pypi.org/project/pylimbo/) (wip) +
+🐍 Python +
```console pip install pylimbo @@ -104,8 +108,11 @@ cur = con.cursor() res = cur.execute("SELECT * FROM users") print(res.fetchone()) ``` +
-### 🐹 Go (wip) +
+🐹 Go +
1. Clone the repository 2. Build the library and set your LD_LIBRARY_PATH to include limbo's target directory @@ -141,11 +148,16 @@ for rows.Next() { fmt.Printf("User: ID: %d, Username: %s\n", id, username) } ``` +
-### ☕️ Java (wip) +
+ +☕️ Java +
We integrated Limbo into JDBC. For detailed instructions on how to use Limbo with java, please refer to the [README.md under bindings/java](bindings/java/README.md). +
## Contributing