e896ba94e3
FossilOrigin-Name: c2380668d9a2ad04f6f27ef052190bda17cdb112895e93b94ae1da70db6983c8
24 lines
826 B
Plaintext
24 lines
826 B
Plaintext
This is the README for the sqlite3 WASM/JS distribution.
|
|
|
|
Main project page: https://sqlite.org
|
|
|
|
Documentation: https://sqlite.org/wasm
|
|
|
|
This archive contains the sqlite3.js and sqlite3.wasm file which make
|
|
up the sqlite3 WASM/JS build.
|
|
|
|
The jswasm directory contains the core sqlite3 deliverables and the
|
|
top-level directory contains demonstration and test apps. Browsers
|
|
will not serve WASM files from file:// URLs, so the demo/test apps
|
|
require a web server and that server must include the following
|
|
headers in its response when serving the files:
|
|
|
|
Cross-Origin-Opener-Policy: same-origin
|
|
Cross-Origin-Embedder-Policy: require-corp
|
|
|
|
One simple way to get the demo apps up and running on Unix-style
|
|
systems is to install althttpd (https://sqlite.org/althttpd) and run:
|
|
|
|
althttpd --enable-sab --page index.html
|
|
|