mongodb-url
v3.0.3
Published
MongoDB URL parsing.
Downloads
722
Maintainers
Keywords
Readme
mongodb-url
How MongoDB URL's work.
Example
var parse = require('mongodb-url');
parse('localhost:27017')
>>> { dbName: 'admin', servers: [ { host: 'localhost', port: 27017 } ] }
parse('mongodb://localhost:27017')
>>> { dbName: 'admin', servers: [ { host: 'localhost', port: 27017 } ] }
Install
npm install --save mongodb-url
Test
npm test
License
Apache 2