Converts a shell connection string (from Atlas) to a MongoDB URL.
Example
var shellToUrl = ;var connectionString = 'mongo "mongodb://localhost:27017?replicaSet=MyCluster" --ssl --username hans'; console;// 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