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