@st.db/mongodb
v1.0.0
Published
Mongodb driver for @st.db
Downloads
13
Maintainers
Readme
About ST.db
ST.db is a powerful npm package that provides an easy-to-use key-value interface for managing various types of databases, both local and cloud-based. This package simplifies the process of reading, writing, and seamlessly switching between different database engines. Whether you're working with local databases or cloud-based solutions, st.db offers a straightforward and efficient way to interact with your data.
Installation
To install the @st.db/mongodb package and its associated database drivers, follow these steps:
- Install the main @st.db/mongodb package:
npm install st.db @st.db/mongodb
Usage
Using Node.js require()
const { MongoDriver } = require('@st.db/mongodb');
TypeScript/ES Module support
import { MongoDriver } from '@st.db/mongodb';
Deno support
import { MongoDriver } from 'npm:@st.db/mongodb';
Using MongoDriver
The MongoDriver
enables interaction with Firestore databases. Here's how to use it:
import { Database } from "st.db";
import { MongoDriver } from "@st.db/mongodb";
const mongoUrl = "mongodb://localhost:27017";
const dbName = "my_database";
const collectionName = "my_collection";
const options = {
driver: new MongoDriver(mongoUrl, dbName, collectionName), // Specify the MongoDriver and the connection details
};
const db = new Database(options);
Links
Sponsors
Love what I do? Send me some coffee!? ☕
Can't send coffees? 😥 Nominate me for a st.db: Reviews | Openbase instead! Your support will help me to continue working on open-source projects like this. 🙏😇
Help
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official Discord Server .
Did you find it difficult to use?
You can see the Documentation of the st.db package to know all the details