Implements Zones for JavaScript, inspired by Dart.
If you're using zone.js via unpkg please provide a query param
?main=browser
https://unpkg.com/zone.js?main=browser
If you're usingnewrelic
make sure you importnewrelic
first as it patches global.Promise before zone,js does
See the new API here.
Read up on Zone Primer.
A Zone is an execution context that persists across async tasks. You can think of it as thread-local storage for JavaScript VMs.
See this video from ng-conf 2014 for a detailed explanation:
- async-listener - a similar library for node
- Async stack traces in Chrome
- strongloop/zone
- vizone - control flow visualizer that uses zone.js
MIT