mysql-builder

0.0.3 • Public • Published

mysql-builder

Easily create/configure a MySQL client

Installation

npm install --save mysql mysql-builder

Usage

var mysql = require('mysql');
var builder = require('mysql-builder')(mysql);
 
// create a client from a URL
var client = builder('mysql://localhost:3306/mydb');
var client = builder('mysql://foo:bar@localhost:3306/mydb');
 
// create a pool from a URL
var pool = builder.pool('mysql://localhost:3306/mydb');
var pool = builder.pool('mysql://localhost:3306/mydb', {connectionLimit: 10});

License

Copyright (c) 2015 Matt Insler
Licensed under the MIT license.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i mysql-builder

    Weekly Downloads

    3

    Version

    0.0.3

    License

    none

    Last publish

    Collaborators

    • mattinsler