A lightweight alternative to Supabase. Build scalable applications with serverless APIs, authentication, and realtime subscriptions.
Everything you need to build modern applications, without the complexity.
Auto-generated REST APIs with built-in query builders and filters.
Secure authentication with JWT tokens and multiple provider support.
Lightweight database operations with real-time subscription capabilities.
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()
Built by developers, for developers. Join us in making backend development simpler.
GitHub Stars
Contributors
Downloads
Be the first to know when we launch new features and updates.
Litesupabase is free and open source under the MIT license. Use it in personal or commercial projects.