mysqldown

0.0.0 • Public • Published

mysqlDOWN

wtf is this?

mysqlDOWN is a mad science experience building a mysql-wrapper around leveldown, so that it can be used in levelup. It's also a way for me to remember how to write sql.

Stability

Really unstable. I'm not a pro sql-guy, so lot's of things might be really badly done. But hey, it sort of works... So that's badass.

Usage

var MysqlDOWN = require('./')
  , levelup = require('levelup')
  , factory = function (location) { return new MysqlDOWN(location) }
  , db = levelup(
        'mysql://user:password@host:port/database/table'
      , { db: factory }
    )
 
db.put('beep', 'boop')
db.put('foo', 'bar')
 
db.createReadStream()
  .on('data', console.log)
  .on('close', function () { console.log('it is over now') })

Licence

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i mysqldown

Weekly Downloads

1

Version

0.0.0

License

none

Last publish

Collaborators

  • kesla