For when using node6 in application code alongside packages that expect you to run node --harmony. Maybe this?
// just this package
require('node6')(__dirname)
// also these packages
require('node6')(__dirname, 'co')
require('node6')(__dirname, 'co-fs')
// just do everything in this package's node_modules tree
require('node6')(__dirname, true)
// or everything in co-fs
require('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.