A lightweight alternative to Supabase for modern web applications. Build scalable applications with authentication, database, storage and restful APIs.
All the essential tools you need
User management and authentication system
Powered by Adminer for easy database management
File management with Tiny File Manager
Interactive API documentation and testing
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);
}
}
Get started in minutes with our comprehensive tools
Built by developers, for developers. Join us in making backend development simpler.
GitHub Stars
Contributors
Downloads
Litesupabase is free and open source under the MIT license. Use it in personal or commercial projects.