bun add waddler @libsql/client dotenvbun add -D tsx
Step 2 - Setup connection variables
Create a .env file in the root of your project and add your database connection variable:
DATABASE_URL=
important
For example, if you want to create an SQLite database file in the root of your project for testing purposes, you need to use file: before the actual filename, as this is the format required by LibSQL, like this:
If you want to create an SQLite database in memory, set an environment variable like this:
DATABASE_URL=:memory:
Step 3 - Connect Waddler to the database
Create a index.ts file in the src directory and initialize the connection:
libsql
libsql with config
import 'dotenv/config';import { waddler } from 'waddler/libsql';const sql = waddler(process.env.DATABASE_URL!);
import 'dotenv/config';import { waddler } from 'waddler/libsql';// You can specify any property from the libsql connection optionsconst sql = waddler({ connection: { url: process.env.DATABASE_URL! }});
(async () => { await sql.unsafe(`create table if not exists users ( id integer primary key autoincrement, name text not null, age integer not null, email text not null unique ); `).run();})()
Step 5 - Seed and Query the database
Letβs update the src/index.ts file with queries to create, read, update, and delete users
src/index.ts
import 'dotenv/config';import { waddler } from 'waddler/libsql';const sql = waddler(process.env.DATABASE_URL!);const main = async () => { const user = [ 'John', 30, '[email protected]', ]; await sql` insert into ${sql.identifier('users')}(${sql.identifier(['name', 'age', 'email'])}) values ${sql.values([user])}; `.run(); console.log('New user created!') const users = await sql`select * from ${sql.identifier('users')};`.all(); console.log('Getting all users from the database:', users) /* const users: { id: number; name: string; age: number; email: string; }[] */ await sql`update ${sql.identifier('users')} set age = ${31} where email = ${user[2]};`.run(); console.log('User info updated!') await sql`delete from ${sql.identifier('users')} where email = ${user[2]};`.run(); console.log('User deleted!')}main();
Step 6 - Run index.ts file
To run any TypeScript files, you have several options, but letβs stick with one: using tsx
Youβve already installed tsx, so we can run our queries now
Run index.ts script
npm
yarn
pnpm
bun
npx tsx src/index.ts
yarn tsx src/index.ts
pnpm tsx src/index.ts
bun tsx src/index.ts
tips
We suggest using bun to run TypeScript files. With bun, such scripts can be executed without issues or additional
settings, regardless of whether your project is configured with CommonJS (CJS), ECMAScript Modules (ESM), or any other module format.
To run a script with bun, use the following command: