“Mongoose DB 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)
  }
}
Blue Booby

мангуоз соединяется с URL -адресом

try {
  mongoose.connect(MONGODB_URI || 'mongodb://localhost/YOUR_DB_NAME', {
      useNewUrlParser: true,
      useUnifiedTopology: true
    }, () =>
    console.log("connected"));
} catch (error) {
  console.log("could not connect");
}
Ghaith Alzin

Узел JS подключится к MongoDB с использованием 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
kepl3r

Mongoose DB Connect

mongoose.connect('mongodb://username:password@host:port/database?options...', {useNewUrlParser: true});
Unusual Unicorn

Ответы похожие на “Mongoose DB Connect”

Вопросы похожие на “Mongoose DB Connect”

Больше похожих ответов на “Mongoose DB Connect” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования