吕君喜 406d880ac6 first | hace 3 años | |
---|---|---|
.. | ||
lib | hace 3 años | |
test | hace 3 años | |
.npmignore | hace 3 años | |
.travis.yml | hace 3 años | |
History.md | hace 3 años | |
LICENSE | hace 3 años | |
Makefile | hace 3 años | |
README.md | hace 3 años | |
index.js | hace 3 años | |
package.json | hace 3 años |
Muri is your friendly neighborhood MongoDB URI parser for Node.js.
$ npm install muri
var muri = require('muri');
var o = muri('mongodb://user:pass@local,remote:27018,japan:27019/neatdb?replicaSet=myreplset&journal=true&w=2&wtimeoutMS=50');
console.log(o);
{ hosts: [ { host: 'local', port: 27017 },
{ host: 'remote', port: 27018 },
{ host: 'japan', port: 27019 } ],
db: 'neatdb',
options: {
replicaSet: 'myreplset',
journal: true,
w: 2,
wtimeoutMS: 50
},
auth: {
user: 'user',
pass: 'pass'
}
}
The returned object contains the following properties:
{ user: 'username', pass: 'password' }
[{ host: 'local', port: 27107 }, { host: '..', port: port }]
ipc
will be set to the value specified [{ ipc: '/tmp/mongodb-27017' }]