Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/duckdb/duckdb-wasm

WebAssembly version of DuckDB
https://github.com/duckdb/duckdb-wasm

analytics browser database javascript node olap sql typescript webassembly

Last synced: about 2 months ago
JSON representation

WebAssembly version of DuckDB

Awesome Lists containing this project

README

        



DuckDB-Wasm




duckdb-wasm package on NPM


Github Actions Badge


Join Discord


Latest DuckDB Release


jsdeliver stats


[DuckDB](https://duckdb.org) is an in-process SQL OLAP Database Management System.

DuckDB-Wasm brings DuckDB to every browser thanks to WebAssembly.

Duckdb-Wasm speaks Arrow fluently, reads Parquet, CSV and JSON files backed by Filesystem APIs or HTTP requests and has been tested with Chrome, Firefox, Safari and Node.js. Learn more about DuckDB-Wasm from our [VLDB publication](https://www.vldb.org/pvldb/vol15/p3574-kohn.pdf) or the [recorded talk](https://www.youtube.com/watch?v=wm82b7PlM6s).

Try it out at [shell.duckdb.org](https://shell.duckdb.org) or [Observable](https://observablehq.com/@observablehq/duckdb), read the [API documentation](https://shell.duckdb.org/docs/modules/index.html), check out the [web-app examples](https://github.com/duckdb-wasm-examples), and chat with us on [Discord](https://discord.duckdb.org).

## Build from source
```shell
git clone https://github.com/duckdb/duckdb-wasm.git
cd duckdb-wasm
git submodule init
git submodule update
make
```

## Repository Structure

| Subproject | Description | Language |
| -------------------------------------------------------- | :------------- | :--------- |
| [duckdb_wasm](/lib) | Wasm Library | C++ |
| [@duckdb/duckdb-wasm](/packages/duckdb-wasm) | Typescript API | Typescript |
| [@duckdb/duckdb-wasm-shell](/packages/duckdb-wasm-shell) | SQL Shell | Rust |
| [@duckdb/duckdb-wasm-app](/packages/duckdb-wasm-app) | GitHub Page | Typescript |
| [@duckdb/react-duckdb](/packages/react-duckdb) | React Hooks | Typescript |