0.0.1 • Published 10 years ago

co-sqlbox v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

co-sqlbox

sqlbox enhancements for generators with co

Installation

$ npm install co-sqlbox

Setup

Simply require co-sqlbox and use the same as sqlbox.

Additions

A number of methods have been added to sqlbox models that will return a thunk. These methods are the following:

  • getThunk
  • mgetThunk
  • saveThunk
  • removeThunk
  • modifyThunk
  • firstThunk
  • allThunk
  • queryThunk

They function exactly the same as their counterparts except that they return a thunk instead of accepting a standard callback.

Example

var savedUser = yield UserModel.saveThunk({ email: 'foo@bar.com' });

License

MIT