How to connect with username/password to mongodb using native node.js driver December 22, 2023 by Tarik Easier if you just use MongoClient MongoClient.connect('mongodb://admin:password@localhost:27017/db', function (err, db) {