![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
monfireboose
Advanced tools
A lightweight JavaScript library that provides a high level and model based API for interacting with Firebase.
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.
It allows you to manage your whole Firestore database with models built by you.
Install it locally in your project folder:
# Using npm
npm i monfireboose
# Or yarn
yarn add monfireboose
# Or pnpm
pnpm add monfireboose
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);
*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.
Head over to the discussions to share your ideas.
MIT © Monfireboose © Albert Arakelyan
FAQs
A lightweight JavaScript library that provides a high level and model based API for interacting with Firebase.
The npm package monfireboose receives a total of 0 weekly downloads. As such, monfireboose popularity was classified as not popular.
We found that monfireboose demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.