Lite Supabase

A lightweight alternative to Supabase for modern web applications. Build scalable applications with authentication, database, storage and restful APIs.

Core Features

All the essential tools you need

Authentication

User management and authentication system

Database

Powered by Adminer for easy database management

Storage

File management with Tiny File Manager

API Documentation

Interactive API documentation and testing

Easy Integration

Simple REST API for authentication

// Login Example using fetch API
async function login() {
    const response = await fetch('/api/auth/login', {
        method: 'POST',
        headers: {
            'Content-Type': 'application/json'
        },
        body: JSON.stringify({
            email: '[email protected]',
            password: 'your-password'
        })
    });

    const data = await response.json();
    
    // Handle the response
    if (response.ok) {
        // Login successful
        localStorage.setItem('token', data.token);
        return data;
    } else {
        // Handle error
        throw new Error(data.message);
    }
}

Quick Start Guide

Get started in minutes with our comprehensive tools

1

Access Dashboard

Centralized admin dashboard for all services

/admin
2

Configure Auth

Manage users, roles, and authentication settings

/admin/auth
3

Manage Data

Intuitive database management with Adminer

/admin/db
4

Handle Files

Efficient file management with Tiny File Manager

/admin/storage

Join Our Growing Community

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

10k+

GitHub Stars

500+

Contributors

1M+

Downloads

MIT License

100% Open Source

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