Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

mongodb-js/url

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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