Turso Has a Free API That Puts SQLite on the Edge Globally
javascript
dev.to
Turso is the edge database built on libSQL (a fork of SQLite). It gives you embedded database performance with global replication — and a powerful SDK. Connect and Query import { createClient } from "@libsql/client"; const db = createClient({ url: "libsql://my-db-username.turso.io", authToken: process.env.TURSO_AUTH_TOKEN, }); // Simple query const result = await db.execute("SELECT * FROM products WHERE price "); console.log(result.rows); // Parameterized const product = aw