Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

quickfirebase.ts

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quickfirebase.ts

simple package to make firebase more easier

  • 3.0.2
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Firebase - App success made simple

Upgrade to Version 3

Installing

$ npm init
$ npm install --save quickfirebase.ts

Example

const quick = require("quickfirebase.ts");

const firebaseConfig = {
  apiKey: ...,
  authDomain: ...,
  databaseURL: ....,
  projectId: ...,
  storageBucket: ....,
  messagingSenderId: .....,
  appId: .....,
  measurementId: .....
};

let schema = {
  sales: 0;
}
quick.connect(firebaseConfig);
const databaseManeger = new quick.database({name: "user", default: schema });
databaseManeger.set("mohamed");

More Examples

(async() => {
    const data = await databaseManeger.findOne("mohamed");
    console.log(data.data.sales);
    data.data.sales += 10;
    data.save(); // to save the data to the database;
    databaseManeger.delete("mohamed"); // to delete object from data
})()

Tip

// you can add a new key with save()
(async() => {
  const data = await databaseManeger.findOne("mohamed");
   data.data.message = "hello";
   data.save();
  })()

connection

  quick.connection.on('connected',  async (firebase) => {
    console.log("connected to database");
});

Menthodes

set() // takes one argument 
findOne()  // takes one argument 
delete() // takes one argument 
deleteAll()
fetch() // to get all data

Dev

 Ziad#1768

Keywords

FAQs

Package last updated on 01 Sep 2022

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