Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
mongoose-multi-connection
Advanced tools
**mongoose-multi-connection** is used to create multiple database connection, base of this package is [mongoose](https://www.npmjs.com/package/mongoose), you can integrate other mongoose functionality too.
mongoose-multi-connection is used to create multiple database connection, base of this package is mongoose, you can integrate other mongoose functionality too.
npm i mongoose-multi-connection
You can see below example for multiple connection, you can check examples directory for example, it also supports esm
const { mongoose, db } = require('mongoose-multi-connection');
//import { mongoose, db } from 'mongoose-multi-connection'; //for esm
//create connection
mongoose.connect(process.env.DATABASE_URI); // mongodb://127.0.0.1:27017/main
//set debug
mongoose.set('debug', true); //optional
//set prefix
mongoose.prefix = "dev_"; //optional
//set postfix
mongoose.postfix = "_dev"; //optional
//user model check example directory for reference
const Users = require('./models/user');
(async function () {
//record will create in main database passed in DATABASE_URI
let createdUserInMain = await Users.create({ name: "Khimji" });
console.log(createdUserInMain);
//record will create in db1 database passed in db()
let createdUserIndb1 = await db('db1', Users).create({ name: "Dipesh" });
console.log(createdUserIndb1);
})()
You can see below example for single connection, you can check examples directory for example, it also supports esm
const {mongoose} = require('mongoose-multi-connection');
//import { mongoose, db } from 'mongoose-multi-connection'; //for esm
//create connection
mongoose.connect(process.env.DATABASE_url);
//set debug
mongoose.set('debug', true); //optional
//user model check example directory for reference
const Users = require('./models/user');
(async function(){
let createdUser = await Users.create({ name: "Aman" });
console.log(createdUser);
})()
FAQs
**mongoose-multi-connection** is used to create multiple database connection, base of this package is [mongoose](https://www.npmjs.com/package/mongoose), you can integrate other mongoose functionality too.
The npm package mongoose-multi-connection receives a total of 0 weekly downloads. As such, mongoose-multi-connection popularity was classified as not popular.
We found that mongoose-multi-connection demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.