mongodb
. से कनेक्ट करने के लिए mongoose
. के साथ , आप उपयोग कर सकते हैं:
mongoose.connect('mongodb://localhost/users_test');
या
mongoose.connect('localhost/users_test');
या
mongoose.connect('localhost','users_test');
लेकिन नहीं mongoose.connect('mongodb:localhost/users_test');
, यह सही होस्टनाम से मेल नहीं खाता (mongodb
localhost
के बजाय )