PocketBase - Open Source backend in 1 file
Open Source backend
for your next SaaS and Mobile app
in 1 file
Realtime database
Authentication
File storage
Admin dashboard
Ready to use out of the box
Explore all features
// JavaScript SDK
import PocketBase from 'pocketbase';
const pb = new PocketBase('http://127.0.0.1:8090');
...
// list and search for 'example' collection records
const list = await pb.collection('example').getList(1, 100, {
filter: 'title != "" && created > "2022-08-01"',
sort: '-created,title',
});
// or fetch a single 'e...
Read more at pocketbase.io