dsn

A DSN parser

Usage no npm install needed!

<script type="module">
  import dsn from 'https://cdn.skypack.dev/dsn';
</script>

README

DSN Parser

Supports MySQL (mysql:) and Postgresql (pgsql:) schemes.

DSNs are a scheme, followed by semicolon (;), or, for command-line convenience, colon-separated (:) parameters in the form of key=value.

Valid parameters are host, port, dbname, user and password, and additionally username is accepted as a synonym for user.

All parameters are set as properties on the DSN object, except dbname is exposed as database.

Installation

npm install dsn

Usage

var parse = require('dsn').parse

var dsn = parse('mysql:host=db;dbname=myDBname')

/*
{ 
  protocol: 'mysql',
  host: 'db',
  database: 'myDBname'
} */