I\'m new in building application with MEAN Stack, I\'m trying to build a real time chat app, here is my server side :
console.log(\"Server running...!\"); v
Change content of this line from
mongo.connect('localhost:27017/db/chat',function(err,db)
to
mongo.connect('mongodb://localhost:27017/db/chat',function(err,db)
Then you can connect MongoDB database successfully.