1.0.5 • Published 3 years ago

@scorpionknifes/fireo v1.0.5

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

Fork of Fireo with Firestore exposed for mocking

Available in other language

  1. FireO is available also in python FireO Python

Installation

npm install fireo

Example Usage

const {Model, Field} = require("fireo")

class User extends Model:
    name = Field.Text();


const u = User.init();
u.name = "Azeem Haider";
await u.save()

// Get user
user = await User.collection.get({key: u.key})
console.log(user.name)

Documentation

Full documentation is available in the FireO Doc.

Contributing

Bug reports and pull requests are welcome. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

  1. Fix bug or add new features
  2. Write tests for your functionality
  3. Mention in Documentation, what you has done and how other can use it

License

This is official FireO Repository. Powered by OctaByte Licensed under Apache License 2.0