DekGenius.com
JAVASCRIPT
mongoose connect
import mongoose from 'mongoose'
export const connectDb = async () => {
try {
await mongoose.connect('mongodb://localhost:27017/test', {
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
})
} catch (error) {
console.log(error.message)
}
}
mongoose connection nodejs
const mongoose = require('mongoose');
const connectDB = async () => {
mongoose
.connect('mongodb://localhost:27017/playground', {
useCreateIndex: true,
useNewUrlParser: true,
useUnifiedTopology: true,
useFindAndModify: false
})
.then(() => console.log('Connected Successfully'))
.catch((err) => console.error('Not Connected'));
}
module.exports = connectDB;
connecting to mongoDB using mongoose
//Import the mongoose module
var mongoose = require('mongoose');
//Set up default mongoose connection
var mongoDB = 'mongodb://127.0.0.1/my_database';
mongoose.connect(mongoDB, {useNewUrlParser: true, useUnifiedTopology: true});
//Get the default connection
var db = mongoose.connection;
//Bind connection to error event (to get notification of connection errors)
db.on('error', console.error.bind(console, 'MongoDB connection error:'));
how to connect mongoose database with nodejs
const mongoose = require("mongoose");
const databaseConnection = () => {
const dbUri = process.env.DB_URI || "mongodb://localhost:27017/codershouse";
mongoose
.connect(dbUri, {
useNewUrlParser: true,
useUnifiedTopology: true,
})
.then((data) => {
console.log(
`MongoDb Database Connected to the Server : ${data.connection.host}`
);
})
.catch((err) => {
console.log(`Some Database Connection Error Occured :- ${err}`);
});
};
module.exports = databaseConnection;
connecting mongoose with express js
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost:27017/test', {useNewUrlParser: true, useUnifiedTopology: true});
connect mongoose from node js
- In your entry file
mongoose
.connect("mongodb://localhost/vidly")
.then(() => console.log("Connected to MongoDB..."))
.catch((err) => console.log("Cloud not connect to MongoDB..."));
mongoose connect to mongodb
// local conecation
const mongoose = require("mongoose");
mongoose
.connect("mongodb://localhost:27017/testdb")
.then(() => console.log("Connected to MongoDB..."))
.catch((err) => console.error("Could not connect to MongoDB...", err));
connecting nodejs using mongoose
mongoose.connect('mongodb://username:password@host:port/database?options...');
node js connect to mongodb using mongoose
//connect with mongodb
mongoose.connect('mongodb://localhost:27017/your_db_name', {useNewUrlParser: true});
//you can also specify with user and pass
mongoose.connect('mongodb://username:password@host:port/database?options...', {useNewUrlParser: true});
//or goto docs https://mongoosejs.com/docs/connections.html
mongoose connect
mongoose.connect('mongodb://username:password@host:port/database?options...', {useNewUrlParser: true});
connect mongoose to application js
// Connect to the Database here
mongoose.connect("mongodb://localhost:27017/test", {
useNewUrlParser: true,
useUnifiedTopology: true,
}, (err) => {
if (err) return console.log(err);
app.listen(3000, () => {
console.log("MongoDB Server listening on 3000");
});
});
connect mongodb using mongoose in node js
const mongoose=require('mongoose');
const mongoURI="mongodb://localhost:27017/inotebook"
const connectToMongo=()=>
{
mongoose.connect(mongoURI,()=>
{
console.log("connect Successfully");
})
}
module.exports=connectToMongo;
mongoose connect
// getting-started.js
const mongoose = require('mongoose');
main().catch(err => console.log(err));
async function main() {
await mongoose.connect('mongodb://localhost:27017/test');
// use `await mongoose.connect('mongodb://user:password@localhost:27017/test');` if your database has auth enabled
}
how to connect mongoose
const mongoose = require('mongoose');
const uri = process.env.MONGO_URI || 'mongodb://localhost/test';
mongoose.connect(uri, function(err, res) {
...
});
© 2022 Copyright:
DekGenius.com