您好,欢迎访问一九零五行业门户网

将MongoDB与NodeJS连接

mongodb.connect介绍这个方法用于将mongo db服务器与我们的node应用程序连接起来。这是mongodb模块中的一个异步方法。
语法mongodb.connect(path[, callback])
参数•path – 实际运行mongodb服务器的服务器路径和端口。
•callback – 如果发生任何错误,此函数将提供回调。
安装mongo-db在尝试将应用程序与nodejs连接之前,我们首先需要设置mongodb服务器。
使用以下查询从npm安装mongodb。
npm install mongodb –save
运行以下命令在特定的本地服务器上设置您的mongodb。这将有助于与mongodb建立连接。
mongod --dbpath=data --bind_ip 127.0.0.1
创建一个mongodbconnect.js文件,并将以下代码片段复制粘贴到该文件中。
现在,运行以下命令来运行代码片段。
node mongodbconnect.js
example// calling the required mongodb module.const mongoclient = require("mongodb");// server pathconst url = 'mongodb://localhost:27017/';// name of the databaseconst dbname = "employee";mongoclient.connect(url, (err,client)=>{ if(!err) { console.log("successful connection with the server"); } else console.log("error in the connectivity");})
输出c:\users\tutorialspoint\> node mongodbconnect.js(node:7016) deprecationwarning: current server discovery and monitoring engine is deprecated, and will be removed in a future version. to use the new server discover and monitoring engine, pass option { useunifiedtopology: true } to the mongoclient constructor.(use `node --trace-deprecation ...` to show where the warning was created)successful connection with the server.
以上就是将mongodb与nodejs连接的详细内容。
其它类似信息

推荐信息