
Turso Has a Free Edge SQLite Database
Turso is a free SQLite database platform that replicates your data to the edge. Your database runs close to your users — worldwide. What Is Turso? Turso is built on libSQL (an open-source fork of SQLite). It gives you the simplicity of SQLite with the scalability of distributed databases. Key features: SQLite compatibility Edge replication (data near users globally) Embedded replicas (sync to your app) Branching (database branches like git) Multi-tenancy TypeScript, Python, Go, Rust SDKs Generous free tier Quick Start # Install CLI curl -sSfL https://get.tur.so/install.sh | bash # Login and create database turso auth login turso db create my-app turso db tokens create my-app JavaScript SDK import { createClient } from " @libsql/client " ; const db = createClient ({ url : " libsql://my-app-username.turso.io " , authToken : " your-token " }); await db . execute ( " CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT, email TEXT) " ); await db . execute ({ sql : " INSERT INTO users (nam
Continue reading on Dev.to Webdev
Opens in a new tab




