Skip to content

Instantly share code, notes, and snippets.

@wearhere
Last active August 29, 2015 14:25
Show Gist options
  • Save wearhere/cee5cd0b5fd01f859126 to your computer and use it in GitHub Desktop.
Save wearhere/cee5cd0b5fd01f859126 to your computer and use it in GitHub Desktop.
Fiber-using code before refactoring. More info at https://www.mixmax.com/blog/node-fibers-using-synchronize-js.
sync.fiber(function() {
var data = sync.await(fs.readFile('a.txt', sync.defer()));
var processedData = /* do something with the data */;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment