mongodb-shell-to-url
v0.1.0
Published
Converts a shell connection string (from Atlas) to a MongoDB URL.
Maintainers
Keywords
Readme
mongodb-shell-to-url

Converts a shell connection string (from Atlas) to a MongoDB URL.
Example
var shellToUrl = require('mongodb-shell-to-url');
var connectionString = 'mongo "mongodb://localhost:27017?replicaSet=MyCluster" --ssl --username hans';
console.log(shellToUrl(connectionString));
// logs "mongodb://hans:PASSWORD@localhost:27017?ssl=true&replicaSet=MyCluster&authSource=admin"Known Limitations
- [ ] requires a MongoDB URI in double-quotes
- [ ] does not support
--hostname,--portyet - [ ] ignores password and hard-codes to
PASSWORDfor security reasons - [ ] only works if the original MongoDB URL contains a
?, sorry :-)
License
Apache 2.0
