RepoDB gives you instant, serverless SQLite databases customized for your SaaS. Scale effortlessly with our multi-tenant architecture designed for modern developers.
import RepoDB from '@suman-malik-repo/repodb-client';
// Initialize instantly
const db = new RepoDB({
host: 'https://repodb.ogensync.com',
token: process.env.DB_TOKEN
});
// Query with native SQL
const users = await db.query(
'SELECT * FROM users WHERE active = ?',
[1],
{ dialect: 'mysql' } // Native MySQL support!
);
console.log(`Found ${users.length} active users!`);
Built for developers who need speed, reliability, and simplicity in one package.
Edge-ready performance with local SQLite databases that respond in milliseconds. Say goodbye to latency.
Enterprise-grade encryption and token-based authentication keep your data safe and isolated.
Create thousands of isolated databases for your users on the fly. detailed usage metrics included.
Code for MySQL but run on LiteBase. Enjoy MySQL syntax compatibility without the overhead of managing a server.
No need to buy a new machine or VPS. Our serverless architecture handles everything while keeping costs near zero.
Define your own database endpoints and restrict access with granular permissions. Your data, your rules.
Integrating RepoDB into your existing project takes less than 5 minutes. No complex configuration files or infrastructure management.
Create an account and provision your first database instance instantly.
Use
npm install @suman-malik-repo/repodb-client to get our
lightweight driver.
Use standard SQL to interact with your data. It's that simple.
// 1. Install
// npm install @suman-malik-repo/repodb-client
// 2. Connect
const db = new RepoDB({
host: 'https://repodb.ogensync.com',
token: 'db_token_xyz...'
});
// 3. Create Table
await db.query(`
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
status TEXT DEFAULT 'active'
)
`);
// 4. Insert Data
await db.query(
'INSERT INTO projects (name) VALUES (?)',
['My Awesome SaaS']
);
Running a dedicated MySQL server is expensive and complex. LiteBase gives you the same power for free.
To keep the platform safe and fast for everyone, please follow these simple guidelines.
Start for free and scale as you grow. No hidden fees.
Perfect for side projects, testing, and small applications.
For growing businesses and high-traffic applications.