influx-connection-url-parser

1.0.1 • Public • Published

influx-connection-url-parser

A parser for influx connection strings represented as a URL.

Usage

var ret = parse( 'http://user:pass@test.influx.com:333/test' );

{
    protocol: 'http',
    host: 'test.influx.com',
    port: 333,
    username: 'user',
    password: 'pass',
    database: 'test'
}

Package Sidebar

Install

npm i influx-connection-url-parser

Weekly Downloads

6

Version

1.0.1

License

ISC

Last publish

Collaborators

  • cantireinnovations