Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 912 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 912 Bytes

DEPRECATED Moved to gitlab.glispa.com:ssp/stormer-mysql

Stormer MySQL

Implementation of Stormer Store for MySQL

CircleCI

Requirements

Usage

const mysql = require('mysql');
const Store = require('stormer-mysql').MySqlStore;

// mysql connection options as found here:
//https://www.npmjs.com/package/mysql#connection-options
const options = {}; 

const db = new Store(mysql, options);

Contributing

This project is work in progress and we'd love more people contributing to it.

  1. Fork the repo
  2. Apply your changes
  3. Write tests
  4. Submit your pull request