A modern and simplest convenient ORM package in Nodejs. FireO is specifically designed for the Google's Firestore, it's more than just ORM. It implements validation, type checking, relational model logic and much more facilities.
- FireO is available also in
pythonFireO Python
npm install fireoconst {Model, Field} = require("fireo");
class User extends Model{
name = Field.Text();
}
const u = User.init();
u.name = "Azeem Haider";
await u.save();
// Get user
const user = await User.collection.get({key: u.key});
console.log(user.name);Full documentation is available in the FireO Doc.
This is official FireO Repository. Powered by OctaByte Licensed under Apache License 2.0