co-common

0.1.0 • Public • Published

co-common

Simple wrapper to co and relate library: co-fs, co-wait, thunkify, thunker, defer.

Installation

$ npm install co-common

Example

Read a file

var co = require('co-common');
var fs = co.fs;
 
co(function* (){
    var content = yield fs.readFile('./filename', 'utf8');
    console.log(content);
})();

Include Library

Relate library can be referred as co's attribute.

  • co
  • thunkify -- Turn a regular node function into one which returns a thunk
  • thunker -- Thunker takes module and returns Thunked API
  • co-wait -- setTimeout generator style
  • defer -- setImmediate and stuff with generators
  • co-fs -- nodejs core fs module thunk wrappers for "co"

More

For more co relate library visite here.

Readme

Keywords

none

Package Sidebar

Install

npm i co-common

Weekly Downloads

2

Version

0.1.0

License

MIT

Last publish

Collaborators

  • pana