Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mongo-uri

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongo-uri - npm Package Compare versions

Comparing version 0.0.0 to 0.1.0

.travis.yml

17

package.json
{
"name": "mongo-uri",
"version": "0.0.0",
"description": "I parse mongo URIs; especially the tricky ones with multiple hosts",
"version": "0.1.0",
"description": "I parse mongo URIs; especially the tricky repl set ones.",
"main": "lib/index.js",

@@ -23,9 +23,12 @@ "scripts": {

"devDependencies": {
"grunt-mocha-cli": "~1.0.0",
"grunt": "~0.4.0",
"grunt-contrib-coffee": "~0.4.1",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-coffee": "~0.5.0",
"chai": "~1.5.0",
"coffee-script": "~1.5.0",
"chai": "~1.5.0",
"mocha": "~1.8.1"
"mocha": "~1.8.1",
"grunt": "~0.4.0"
},
"engines": {
"node": ">=0.8"
}
}
mongo-uri
=========
I parse mongo URIs; especially the tricky ones with multiple hosts
I parse mongo URIs; especially the tricky repl set ones.
[![Build Status](https://travis-ci.org/supershabam/mongo-uri.png?branch=master)](https://travis-ci.org/supershabam/mongo-uri)
Dear NodeJS MongoDB Drivers
---------------------------
I want to use the mongodb connection string... and not just the simple `mongodb://localhost`.
As it turns out, as soon as you start working with real... non-localhost/side-project
deployments, you need to connect to replication sets. Luckily the defined connection
string format accomodates such configurations!
Sadly, you do not understand these connection strings, or have unacceptable bugs with
your parsing (e.g. uris are uri encoded).
So, I made a uri parser for you.
Please find bugs in my code, and help me make it the best mongo connection string
parser in history.
AND THEN USE IT!
Heads up
--------
I refuse to make assumptions about defaults as part of the parser. So, if a port
goes unspecified, I will say that the port is null (because it is), and it is
your job to realize that the default port is 27015.
Usage
-----
```javascript
var MongoURI = require('mongo-uri')
, uriString
, uri
;
// let's deal with a complicated (yet real-life) uri
uriString = "mongodb://%40u%2Fs%3Fe%3Ar:p%40a%2Fs%3Fs%3A@example1.com,example2.com,example3.com:27018/?readPreference=secondary&w=2&wtimeoutMS=2000&readPreferenceTags=dc:ny,rack:1&readPreferenceTags=dc:ny&readPreferenceTags=";
try {
uri = MongoURI.parse(uriString);
} catch (err) {
// handle this correctly, kthxbye
}
console.log(uri);
/*
* username: "@u/s?e:r" // yay! it got decoded like it was supposed to!
* password: "p@a/s?s:"
* hosts: ["example1.com", "example2.com", "example3.com"] // wow, multiple hosts!
* ports: [null, null, 27018] // remember, I don't assume
* database: null // what did I just say?
* options: {
* readPreference: "secondary",
* w: "2",
* timeoutMS: "2000",
* readPreferenceTags: ["dc:ny,rack:1", "dc:ny", ""] // yeah, this is correct
* }
*/
```
Source
------
Ok, so I made a Tweet (which is as good as a promise) that my next npm module would
be in [literate coffeescript](http://ashkenas.com/literate-coffeescript/). So,
I had fun documenting my code, but I *do not* want the .litcoffee to be transpiled
upon `npm install` of everbody using this code.
GitHub should store the raw source (without the transpiled lib/*.js contents), but
npm should store the ready-to-use no-transpiling-needed javascript!
So, I created a grunt task to do my publishing. Instead of using `npm publish`, I
use `grunt publish` which cleans my directory, compiles my .litcoffee files, and
then publishes.
So, don't hate me for using .litcoffee. You're getting raw javascript goodness
when you npm install me.
License
-------
MIT

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc