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
の代わりに )