KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
sqlite-wasi
★ 9
Open GitHub ↗
SQLite WASI build.
Download README (.md)
Explore Similar Repositories
twig-storybook
:
Extends Twig with new "stories" and "story" tags for easily writing Storybook stories using Twig templates.
Vidsync
:
A DOS terminate and stay resident (TSR) program to fix display calibration for the Book8088
HEDNet-nusc
:
HEDNet: A Hierarchical Encoder-Decoder Network for 3D Object Detection in Point Clouds (NeurIPS 2023)
circular-dependency-cases
:
show how bundlers deal with circular dependencies
splunk_hec_aio
:
Splunk HEC AIO Class
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
sqlite-wasi
?
Download (.md)
# SQLite WASI build This is a [WASI](https://wasi.dev/) build of the SQLite 3.44 shell, compiled with [wasienv](https://github.com/wasienv/wasienv). It is published as an NPM package [@antonz/sqlite-wasi](https://www.npmjs.com/package/@antonz/sqlite-wasi): ``` https://unpkg.com/@antonz/sqlite-wasi/dist/sqlite.wasm ``` ## Usage Using the [Runno](https://github.com/nalgeon/runno) runtime: ```js import { WASI } from "https://unpkg.com/@antonz/runno/dist/runno.mjs"; const url = "https://unpkg.com/@antonz/sqlite-wasi/dist/sqlite.wasm"; const result = await WASI.start(fetch(url), { args: ["sqlite3", "-version"], stdout: (out) => console.log(out), stderr: (err) => console.error(err), }); console.log(`exit code = ${result.exitCode}`); ``` Result: ``` 3.44.2 2023-11-24 11:41:44 ... exit code = 0 ``` ## Limitations No file I/O. Unsupported dot commands: ``` .shell .system ``` ## Building from source ``` bash scripts/install.sh bash scripts/build.sh ``` ## License Copyright 2024 [Anton Zhiyanov](https://antonz.org/), MIT License. SQLite is [public domain](https://sqlite.org/copyright.html).