instant-firestore-utils

1.0.3 • Public • Published

Instant Firestore Utils

Lightweight Firebase Firestore utility library.

Please note: Although this package can be utilized with raw Firestore Documents and Collections, it may be easier to use the instant-firestore ORM depending on your requirements.

Table of Contents

Installation

You can install this package using npm:

$ npm install instant-firestore-utils

Usage

Here is a quick example to get you started:

ES Modules

import { getDocument } from 'instant-firestore-utils';
 
const test = async () => {
  const doc = await getDocument(db.collection('countries')); // Assumes db is a Firebase Firestore reference
  console.log(doc);
};

CommonJS Modules

var getDocument = require('instant-firestore-utils').getDocument;
 
getDocument(db.collection('countries')).then(function(doc) {
  console.log(doc);
});

API

getDocument

getCollection

getSubCollection

serializeDocument

serializeSnapshot

populate

populateReference

populatePath

populateSubcollection

deserialize

deserializePath

Contributing

We'd greatly appreciate any contribution you make.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i instant-firestore-utils

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

34.2 kB

Total Files

12

Last publish

Collaborators

  • cjmyles