An open API service indexing awesome lists of open source software.

https://github.com/chromy/crunch

sqlite3 compiled to WASM for the browser and server
https://github.com/chromy/crunch

sql sqlite sqlite3 wasm webassembly

Last synced: 10 months ago
JSON representation

sqlite3 compiled to WASM for the browser and server

Awesome Lists containing this project

README

          

# Crunch
sqlite3 compiled to WASM with Javascript bindings.
For the browser and the server.

```
$ node -e "require('repl').start({ignoreUndefined: true})" --experimental-repl-await
> const {createEngine} = require('@tsundoku/crunch');
> const engine = await createEngine();
> const db = await engine.open();
> db.exec('CREATE TABLE peaks (name TEXT, m INTEGER)');
> db.exec('INSERT INTO peaks (name, m) VALUES ("Olympus Mons", 21171)');
> [...db.query('SELECT * FROM peaks')];
[ { name: 'Olympus Mons', m: 21171 } ]
```

## Setup
```
$ git clone https://github.com/chromy/crunch.git
$ cd crunch
$ tools/deps
$ tools/gen out
$ tools/deps/ninja -C out
```

## Build
```
$ tools/deps/ninja -C out
```

## Test
```
$ tools/test
```