“Hubungkan MongoDB menggunakan Mongoose di Node JS” Kode Jawaban

NodeJs koneksi lumpur

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;
Uptight Unicorn

Menghubungkan ke MongoDB menggunakan 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:'));
TJ Max

Mongoose Connect ke 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));
Average Ant

Menghubungkan Mongoose Dengan JS Ekspres

const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost:27017/test', {useNewUrlParser: true, useUnifiedTopology: true});
Panicky Pollan

Menghubungkan NodeJs Menggunakan Mongoose

mongoose.connect('mongodb://username:password@host:port/database?options...');
Xenophobic Xenomorph

Hubungkan MongoDB menggunakan Mongoose di Node JS

const mongoose=require('mongoose');
const mongoURI="mongodb://localhost:27017/inotebook"


const connectToMongo=()=>
{
    mongoose.connect(mongoURI,()=>
    {
        console.log("connect Successfully");
    })
}

module.exports=connectToMongo;
30_Savaliya Denish

Jawaban yang mirip dengan “Hubungkan MongoDB menggunakan Mongoose di Node JS”

Pertanyaan yang mirip dengan “Hubungkan MongoDB menggunakan Mongoose di Node JS”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya