A lightweight Vite site that showcases KiteSQL running fully in the browser via WebAssembly. Use it for GitHub Pages or any static host, then embed a link in your profile README.
- Install deps (pulls the published
kite_sqlnpm package):
npm install- Run locally:
npm run devThe app uses a small browser-friendly wrapper (
src/kite-sql-web.ts) to load the npm-shippedkite_sql_bg.wasmwith Vite’s?urlasset handling. No local Rust build is needed.
npm run dev— start Vite dev server.npm run build— produce static assets indist/(ready for GitHub Pages).npm run preview— preview the production build.
- Push this folder as a separate repo or a
gh-pagesbranch, then servedist/. - In your GitHub profile README, link to the deployed page and add a badge/screenshot.
- Uses the published
kite_sqlwasm asset from npm with a small browser loader. - Runs a small SQL script (create/insert/update/select) entirely in the browser, then renders the result table.