Socket
Socket
Sign inDemoInstall

tht-firebase-api-wrappers

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tht-firebase-api-wrappers

Common Firebase API methods used across THT projects


Version published
Weekly downloads
21
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

tht-firebase-api-wrappers

Common buttons used throughout the THT projects

Getting Started

Install the library with either Yarn:

yarn add tht-firebase-api-wrappers

or npm:

npm install --save tht-firebase-api-wrappers

Usage

createDocument

PropertyRequiredTypeDescription
pathtruestringCollection within Firebase to create document
documentIdtruestringThe id that will be assigned to newly created document
datatrueobjThe fields to store in the document being created
import {createDocument} from 'tht-firebase-api-wrappers';

function createTask(path, documentId, data) {
    createDocument(path, documentId, data)
      .then(insertionAttempt => {
        console.log('Successful insertion with info: ', insertionAttempt);
      })
      .catch(error => {
        console.log('Error inserting document: ', error);
      })
};

FAQs

Package last updated on 06 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc