1.1.0 • Published 8 years ago
co-eval v1.1.0
co-eval
Eval with co. WARNING: ONLY FOR DEBUG.
Install
$ npm i co-eval -gUsage
test.js
yield blablabla...run:
$ co test
// or
$ co-eval testequal to:
const co = require('co')
co(function* () {
yield blablabla...
}).catch(console.error)