npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ordentco/ramen-adonis-datamodel

v0.1.10

Published

Part of ramen package. This package contains base model class for firestore data.

Downloads

4

Readme

ramen-adonis-datamodel

ramen-adonis-datamodel is part of ramen package for Adonis.JS framework. Currently, it offers wrapper for Google Firestore operations, including query, adding, and updating data. There will be plans to support another data model in the future, if it is needed.

Installation

You can install the package using command

adonis install ramen-adonis-datamodel

The installer will copy the following files into your project directory.

  • config/ramenfirestore.js

These files should be located inside your project directory after a successfull installation.

How to Use

Detailed instructions for how to integrate the package to your project can be found in instruction.md file which will be automatically opened after a successfull installation.

Features

By extending your model with Ramen/FirestoreModel class, you can access following methods from your model in order to access firestore operations

setCollectionDb(collectionName, documentId = null)

this method will set the firestore instance to point to correspoding collectionName collection. documentId is an optional parameter, but will be mandatory if you want to access specific document id, and also when you want to chain this method multiple times. This method is mandatory when you want to access the other method in this package.

where(columnName, operator, value)

THis method will be adding where clause to the firestore instance, in order you want to query some data from firestore server. columnName is the column name which exist in your document property. operator is a comparison operator which is supported by firestore. value is the comparable data. Please note in order to use this function, you will need to chain it with setCollectionDb method

async find()

This method will be returning the specific document data from a specific collection.

async get()

This method will execute the query which is already you specified using where() method. This also can be used to get all collection data, by chaining it with setCollectionDb(collectionName).

Request Parsing