mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-06-27 05:39:31 +00:00
.cargo
.github
bindings
bottomless
bottomless-cli
docker-compose
docs
ext
libsql
libsql-ffi
libsql-replication
libsql-server
libsql-shell
libsql-sqlite3
art
autoconf
contrib
crates
doc
ext
async
crr
expert
fts3
fts5
icu
jni
lsm1
misc
rbu
recover
repair
rtree
session
udf
userauth
vwal
wasm
api
common
fiddle
jaccwabyt
sql
tests
EXPORTED_FUNCTIONS.fiddle.in
GNUmakefile
README-dist.txt
README.md
batch-runner.html
batch-runner.js
c-pp.c
demo-123-worker.html
demo-123.html
demo-123.js
demo-jsstorage.html
demo-jsstorage.js
demo-worker1-promiser.html
demo-worker1-promiser.js
demo-worker1.html
demo-worker1.js
dist.make
example_extra_init.c
fiddle.make
index-dist.html
index.html
module-symbols.html
scratchpad-wasmfs.html
scratchpad-wasmfs.mjs
speedtest1-wasmfs.html
speedtest1-wasmfs.mjs
speedtest1-worker.html
speedtest1-worker.js
speedtest1.html
split-speedtest1-script.sh
test-opfs-vfs.html
test-opfs-vfs.js
tester1-worker.html
tester1.c-pp.html
tester1.c-pp.js
wasmfs.make
README.md
mptest
src
test
tool
vsixtest
.gitignore
Dockerfile-wasm-udf
LIBSQL_VERSION
LICENSE.md
Makefile.in
Makefile.linux-gcc
Makefile.msc
README-SQLite.md
VERSION
aclocal.m4
config.guess
config.sub
configure
configure.ac
install-sh
libsql.pc.in
ltmain.sh
magic.txt
main.mk
manifest
manifest.uuid
spec.template
sqlite.pc.in
sqlite3.1
sqlite3.pc.in
sqlite_cfg.h.in
libsql-sys
libsql-sys-tmp
vendored
xtask
.dockerignore
.env
.gitignore
CODE_OF_CONDUCT.md
Cargo.lock
Cargo.toml
Dockerfile
Dockerfile.dev
LICENSE.md
README-libsql.md
README.md
docker-entrypoint.sh
fly.toml
rust-toolchain.toml
25 lines
661 B
HTML
25 lines
661 B
HTML
<!doctype html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
|
|
<title>Hello, sqlite3</title>
|
|
<style>
|
|
.warning, .error {color: red}
|
|
.error {background-color: yellow}
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: monospace;
|
|
white-space: break-spaces;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>1-2-sqlite3 demo</h1>
|
|
<script src="jswasm/sqlite3.js"></script>
|
|
<script src="demo-123.js"></script>
|
|
</body>
|
|
</html>
|