|
|
|
|
|
by resoluteteeth
1436 days ago
|
|
There is a bunch of software in this space like supabase, flat backend, and appwrite that attempts to be a generic self hosted backend for apps in a manner similar to firebase by providing data storage and authentication with a rest API in an integrated fashion, usually with a built in admin interface for schema design, user management, etc. You can also think of them as software like postgrest but with the addition of authentication and other app oriented features, and with a JavaScript client library out if the box. This program is doing the same thing in a more lightweight way as a single executable using sqlite. The idea is that by using this type of generic backend software for your database and authentication, you can basically just write the remainder of a typical app or webapp entirely as client side/frontend software, which is something that you can also do with firebase, but this allows you to easily self host it without having to create your own custom backend software. |
|