강의

멘토링

커뮤니티

Inflearn Community Q&A

seair's profile image
seair

asked

Internet of Things Communication in My Hands (Arduino, MQTT, Nodejs, MongoDB, Android, VS Code)

12_Connecting to mongodb in nodejs

mongoose.connect() 콜백 에러

Written on

·

305

0

Mongoose.prototype.connect() no longer accepts a callback

더이상 콜백을 허용하지 않는다며 에러가 뜹니다.

그래서 데이타베이스에 연결이 안되네요.

node.jsmongodbarduinoiotMQTT

Answer 1

0

seair님의 프로필 이미지
seair
Questioner

mongoose
  .connect(MONGODB_URL)
  .then(() => console.log("Connected to database!"))
  .catch(() => console.log("Connection failed..."));
seair's profile image
seair

asked

Ask a question