co-eval
v1.1.0
Published
Eval with co.
Downloads
2
Readme
co-eval
Eval with co. WARNING: ONLY FOR DEBUG.
Install
$ npm i co-eval -g
Usage
test.js
yield blablabla...
run:
$ co test
// or
$ co-eval test
equal to:
const co = require('co')
co(function* () {
yield blablabla...
}).catch(console.error)