Lite Supabase

A lightweight alternative to Supabase. Build scalable applications with serverless APIs, authentication, and realtime subscriptions.

Powerful Features, Lightweight Package

Everything you need to build modern applications, without the complexity.

Instant API

Auto-generated REST APIs with built-in query builders and filters.

Authentication

Secure authentication with JWT tokens and multiple provider support.

Database

Lightweight database operations with real-time subscription capabilities.

Simple Integration

Get started in minutes with just a few lines of code.

// Initialize Litesupabase client
const client = new Litesupabase({
    url: 'YOUR_API_URL',
    key: 'YOUR_API_KEY'
})

// Query your data
const { data, error } = await client
    .from('posts')
    .select('*')
    .order('created_at', { ascending: false })

// Real-time subscriptions
client
    .from('posts')
    .on('INSERT', payload => {
        console.log('New post:', payload)
    })
    .subscribe()

Join Our Growing Community

Built by developers, for developers. Join us in making backend development simpler.

10k+

GitHub Stars

500+

Contributors

1M+

Downloads

Join the Waitlist

Be the first to know when we launch new features and updates.

MIT License

100% Open Source

Litesupabase is free and open source under the MIT license. Use it in personal or commercial projects.