このメソッドは、Mongo DB サーバーを Node アプリケーションに接続するために使用されます。これは、MongoDB モジュールの非同期メソッドです。
mongodb.connect(path[, callback])
•path – MongoDB サーバーが実際に実行されているサーバーのパスとポート。
•callback – この関数は、エラーが発生した場合にコールバックを提供します。
アプリケーションを Nodejs に接続する前に、まず MongoDB サーバーをセットアップする必要があります。
次のクエリを使用して、npm から mongoDB をインストールします。
npm install mongodb –save
次のコマンドを実行して、特定のローカル サーバー上に mongoDB をセットアップします。これは、MongoDB との接続を確立するのに役立ちます。
mongod --dbpath=data --bind_ip 127.0.0.1
MongodbConnect.js ファイルを作成し、次のコード スニペットをコピーしてファイルに貼り付けます。
次に、次のコマンドを実行してコード スニペットを実行します。
node MongodbConnect.js
// Calling the required MongoDB module. const MongoClient = require("mongodb"); // Server path const url = 'mongodb://localhost:27017/'; // Name of the database const 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 に接続するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。