Node JS で何かをプッシュしたい場合、Mongo DB & Express は Mongo DB に接続する安全な方法として十分でしょうか?
誰かがセキュリティの観点からこのコードを説明できますか?
===
チュートリアルの多くは、単純に使用します...
var mongoClient = new MongoClient(new Server('localhost', 27017));
Mongos ドキュメンテーションには以下が含まれます...
var MongoClient = require('mongodb').MongoClient;
// Connect to the db
MongoClient.connect("mongodb://localhost:27017/exampleDb", function(err, db) {
if(!err) {
console.log("We are connected");
}
});
===
コードは Mongo ドキュメントに基づいています - http://mongodb.github.io/node-mongodb-native/api-articles/nodekoarticle1.html#getting-that-c onnection-to-the-database