🌟 An elegant Active Record implementation for Firebase's Firestore
- 📝 Simple CRUD operations with
create
,update
,delete
, andsave
- 🔍 Powerful querying with
filter
,where
, andwhereKeyExists
- 📚 Bulk operations with
saveMany
- 🎯 Easy record retrieval with
find
andget
npm install firefly
import { createUser } from 'firefly';
const User = createUser();
const user = new User({ name: 'Jane Doe' });
await user.save();
npm test
MIT © [Rob Conery]
Love contributions and issues! Have a look at CONTRIBUTING!