domain-interceptor

Domain events notifier

Usage no npm install needed!

<script type="module">
  import domainInterceptor from 'https://cdn.skypack.dev/domain-interceptor';
</script>

README

Domain Interceptor Build Status

Turns domains into a relevant event emitters.

OBSERVABILITY OBSERVABILITY OBSERVABILITY!!! (in a Steve Balmer busted out sqweaky voice).

Install

$ npm install domain-interceptor

Use

var i = require('domain-interceptor');

i.on('created', function(d) {
  console.log('this domain was created somewhere:', d);
  
  d.on('added', function(ee) {
    console.log('someone added an event emitter to this domain!', ee);
  });
});

For now, works with bare bones event emitters and http client requests.

Licence

MIT