New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

monfireboose

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

monfireboose

A lightweight JavaScript library that provides a high level and model based API for interacting with Firebase.

  • 0.1.4-experimental.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
0
Weekly downloads
 
Created
Source

Monfireboose

A lightweight JavaScript library that provides a high level and model based API for interacting with Firebase.

Use your Firebase like Mongoose.
Ever thought about using your Firestore collections like Mongoose models, Monfireboose will help with this.

👀 What can it do?

It allows you to manage your whole Firestore database with models built by you.

🔍 Table of Contents

⚙️ Install

Install it locally in your project folder:

# Using npm
npm i monfireboose
# Or yarn
yarn add monfireboose
# Or pnpm
pnpm add monfireboose

💡 Usage

  • Connect to the Firestore database like to MongodDB with Mongoose
  • Create and validate Schemas like with Mongoose
import { connect, FirebaseConfig, Schema, model } from 'monfireboose';

const config = new FirebaseConfig({
  apiKey: 'YOUR_API_KEY',
  authDomain: 'YOUR_AUTH_DOMAIN',
  projectId: 'YOUR_PROJECT_ID',
  storageBucket: 'YOUR_STORAGE_BUCKET',
  messagingSenderId: 'YOUR_MESSAGING_SENDER_ID',
  appId: 'YOUR_APP_ID',
});

connect(config).then((app) => {
  console.log('Connected to Firebase', app);
});

const userSchema = new Schema({
  name: {
    type: String,
    required: true,
  },
  age: {
    type: Number,
    required: true,
  },
});

const userModel = model('users', userSchema);

const user = await userModel.add({ name: 'John', age: 30 });

console.log(user.id);

All CRUD available methods

  • add - adds a new document
  • edit - edits existing document
  • get - get documents with given query (or all documents if query is not given)
  • getDoc - gets one document by ID
  • delete - delets document by ID

*Note: Missing something? don't worry Monfireboose includes all Firebase native modules under monfireboose/fire/needed_module. needed_module is you desired module e.g. auth, firestore, storage etc.

💬 Discussions

Head over to the discussions to share your ideas.

📄 License

MIT © Monfireboose © Albert Arakelyan

Keywords

FAQs

Package last updated on 08 Aug 2024

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