Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
penberg authored Feb 10, 2025
1 parent 0e2c9f9 commit a531f63
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ In the future, we will be also working on:

## Getting Started

### 💻 Command Line

<details>
<summary>💻 Command Line</summary>
<br>
You can install the latest `limbo` release with:

```shell
Expand Down Expand Up @@ -68,11 +69,11 @@ You can also build and run the latest development version with:
```shell
cargo run
```
</details>

### [JavaScript](https://www.npmjs.com/package/limbo-wasm) (wip)

Installation:

<details>
<summary>✨ JavaScript</summary>
<br>
```console
npm i limbo-wasm
```
Expand All @@ -87,8 +88,11 @@ const stmt = db.prepare('SELECT * FROM users');
const users = stmt.all();
console.log(users);
```
</details>

### 🐍 [Python](https://pypi.org/project/pylimbo/) (wip)
<details>
<summary>🐍 Python</summary>
<br>

```console
pip install pylimbo
Expand All @@ -104,8 +108,11 @@ cur = con.cursor()
res = cur.execute("SELECT * FROM users")
print(res.fetchone())
```
</details>

### 🐹 Go (wip)
<details>
<summary>🐹 Go</summary>
<br>

1. Clone the repository
2. Build the library and set your LD_LIBRARY_PATH to include limbo's target directory
Expand Down Expand Up @@ -141,11 +148,16 @@ for rows.Next() {
fmt.Printf("User: ID: %d, Username: %s\n", id, username)
}
```
</details>

### ☕️ Java (wip)
<details>

<summary>☕️ Java</summary>
<br>

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).
</details>

## Contributing

Expand Down

0 comments on commit a531f63

Please sign in to comment.