As of Node.js 8.0.0, the handlers of promises are run inside the domain in
which the call to .then() or .catch() itself was made:
const d1 = domain.create();const d2 = domain.create();let p;d1.run(() => {p = Promise.resolve(42);});d2.run(() => {p.then((v) => {// running in d2});});
A callback may be bound to a specific domain using [domain.bind(callback)][]:
const d1 = domain.create();const d2 = domain.create();let p;d1.run(() => {p = Promise.resolve(42);});d2.run(() => {p.then(p.domain.bind((v) => {// running in d1}));});
Domains will not interfere with the error handling mechanisms for
promises. In other words, no 'error' event will be emitted for unhandled
Promise rejections.
