0.1.0 • Published 8 years ago

mongodb-shell-to-url v0.1.0

Weekly downloads
119
License
Apache-2.0
Repository
github
Last release
8 years ago

mongodb-shell-to-url travis npm

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, --port yet
  • ignores password and hard-codes to PASSWORD for security reasons
  • only works if the original MongoDB URL contains a ?, sorry :-)

License

Apache 2.0