domain-test.js 225 B

12345678910111213
  1. var domain = require('domain');
  2. //throw new Error('bazz');
  3. var d = domain.create();
  4. d.on('error', function ( e ) {
  5. console.log('error!!!', e);
  6. });
  7. d.run(function () {
  8. console.log('hey');
  9. throw new Error('bazz');
  10. });