Socket
Socket
Sign inDemoInstall

mysql-flexi-promise

Package Overview
Dependencies
11
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mysql-flexi-promise

wrapper on nodejs mysql package which supports promises and singleton pool connection


Version published
Weekly downloads
1
decreased by-94.44%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

mysql-flexi-promise

Author : Suraj Kumar Jha

This is a wrapper on top of nodejs mysql package. It is a promisified version of the mysql library. Please note that this library creates a singleton pool connection to mysql (for now).

Installation

npm i mysql-flexi-promise

Requirements

depends on mysql npm package. Supports mysql 5.x. doesn't support mysql 8.0

Description

library exposes 3 functions ->
getInstance() : takes mysql config as input and returns a singleton class
executeQuery() : takes the SQL query and options as inputs and returns the result as a promise
closePool() : ends the pool connection to the database.

Code Example

const DatabaseConnection = require('mysql-flexi-promise');


const config = {
    name: 'dev',
    host: 'localhost',
    user: 'root',
    password: '#1234567890',
    database: 'test',
    multipleStatements: true,
    connectionLimit: 10,
};

(async () => {
    const db = DatabaseConnection.getInstance(config);
    const query = 'select * from users';
    const result = await db.executeQuery(query, {});
    console.log(result);
})();
console.log(cleaned);

Unit Tests

Run command : npm test

Please do the following pre requisites before running the unit tests Please setup mysql 5.x and create a database named test. Also create a table users.

Contributors

Suraj Kumar Jha

License

MIT License

Keywords

FAQs

Last updated on 12 Dec 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc