You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For when using node6 in application code alongside packages that expect you to run node --harmony. Maybe this?
// just this packagerequire('node6')(__dirname)// also these packagesrequire('node6')(__dirname,'co')require('node6')(__dirname,'co-fs')// just do everything in this package's node_modules treerequire('node6')(__dirname,true)// or everything in co-fsrequire('node6')(__dirname,'co-fs',true)
koa, co and their ecosystem of packages all fall down otherwise, which would be a shame considering there's already been a lot of good stuff to come out of there.
The text was updated successfully, but these errors were encountered:
For when using
node6
in application code alongside packages that expect you to runnode --harmony
. Maybe this?koa
,co
and their ecosystem of packages all fall down otherwise, which would be a shame considering there's already been a lot of good stuff to come out of there.The text was updated successfully, but these errors were encountered: