Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.