Skip to content

Instantly share code, notes, and snippets.

@misterdjules
Created November 18, 2014 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save misterdjules/fbac0022836745c0a230 to your computer and use it in GitHub Desktop.
Save misterdjules/fbac0022836745c0a230 to your computer and use it in GitHub Desktop.
var domain = require('domain');
var d = domain.create();
d.on('error', function() {
console.log('error handler')
});
d.run(function doStuff() {
require('fs').readFile('not here', 'utf8', function(data) {
console.log('readFile complete');
throw new Error('throw from readFile cb');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment