Skip to content

Instantly share code, notes, and snippets.

@misterdjules
Created November 18, 2014 00:25
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/2f2130cf5ad761db7e44 to your computer and use it in GitHub Desktop.
Save misterdjules/2f2130cf5ad761db7e44 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').exists('not here', function(exists) {
console.log('exists complete');
throw new Error('throw from exists cb');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment