influx-connection-url-parser
v1.0.1
Published
A parser for influx db url connection strings
Downloads
15
Maintainers
Readme
influx-connection-url-parser
A parser for influx connection strings represented as a URL.
Usage
var ret = parse( 'http://user:[email protected]:333/test' );
{
protocol: 'http',
host: 'test.influx.com',
port: 333,
username: 'user',
password: 'pass',
database: 'test'
}