The Wayback Machine - https://web.archive.org/web/20190322181028/https://github.com/angular/zone.js
Skip to content
Please note that GitHub no longer supports Internet Explorer.

We recommend upgrading to the latest Microsoft Edge, Google Chrome, or Firefox.

Learn more
Implements Zones for JavaScript
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
dist build: bump version to 0.9.0 (#1193) Mar 22, 2019
doc docs: Re-phrase the lines for better understanding (#1151) Mar 7, 2019
example feat(eventListener): fix #798, improve EventTarget.addEventListener p… Jun 30, 2017
lib
scripts
test
.clang-format build: add a clang-format task Oct 4, 2016
.editorconfig
.gitignore
.travis.yml build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
CHANGELOG.md build: bump version to 0.9.0 (#1193) Mar 22, 2019
DEVELOPER.md
LICENSE
LICENSE.wrapped chore(everything): Major Zone Rewrite/Reimplementation Feb 29, 2016
MODULE.md
NON-STANDARD-APIS.md
README.md Update YouTube video link (#1163) Mar 7, 2019
SAMPLE.md
STANDARD-APIS.md fix(event): blackListedEvents also apply on addEventListener (#968) Dec 27, 2017
check-file-size.js
file-size-limit.json
gulpfile.js
karma-base.conf.js
karma-build-jasmine-phantomjs.conf.js fix(websocket): fix #824, patch websocket onproperties correctly in P… Jul 12, 2017
karma-build-jasmine.conf.js
karma-build-jasmine.es2015.conf.js
karma-build-mocha.conf.js
karma-build-sauce-mocha.conf.js
karma-build-sauce-selenium3-mocha.conf.js fix(test): fix mocha compatible issue (#1028) Mar 14, 2018
karma-build.conf.js build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
karma-dist-jasmine.conf.js fix: Run tests on both the build as well as the dist folder (#514) Dec 18, 2016
karma-dist-mocha.conf.js fix(test): karma-dist should test bundle under dist (#1049) Jun 18, 2018
karma-dist-sauce-jasmine.conf.js fix(promise): can set native promise after loading zone.js (#899) Sep 15, 2017
karma-dist-sauce-jasmine.es2015.conf.js build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
karma-dist-sauce-jasmine3.conf.js fix(jasmine): fix #1015, make jasmine patch compatible to jasmine 3.x ( Feb 17, 2018
karma-dist-sauce-selenium3-jasmine.conf.js
karma-dist.conf.js
karma-evergreen-dist-jasmine.conf.js
karma-evergreen-dist-sauce-jasmine.conf.js
karma-evergreen-dist.conf.js build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
package.json
presentation.png readme: add ng-conf presentation Jan 27, 2014
promise-adapter.js
promise.finally.spec.js
sauce-evergreen.conf.js
sauce-selenium3.conf.js feat(error): fix #975, can config how to load blacklist zone stack fr… Jun 24, 2018
sauce.conf.js build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
sauce.es2015.conf.js build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
simple-server.js feat(saucelab): integrate saucelab webdriver test. (#819) Jul 6, 2017
tsconfig-esm-2015.json build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
tsconfig-esm-node.json
tsconfig-esm.json build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
tsconfig-node.json
tsconfig.json build: build zone-evergreen.js in es2015, add terser minify support Feb 26, 2019
tslint.json build: enforce no var keyword Dec 28, 2016
webpack.config.js
yarn.lock build: upgrade to typescript 3.2.2 (#1199) Mar 12, 2019

README.md

Zone.js

Build Status CDNJS

Implements Zones for JavaScript, inspired by Dart.

If you're using zone.js via unpkg (i.e. using https://unpkg.com/zone.js) and you're using any of the following libraries, make sure you import them first

  • 'newrelic' as it patches global.Promise before zone.js does
  • 'async-listener' as it patches global.setTimeout, global.setInterval before zone.js does
  • 'continuation-local-storage' as it uses async-listener

NEW Zone.js POST-v0.6.0

See the new API here.

Read up on Zone Primer.

What's a Zone?

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:

screenshot of the zone.js presentation and ng-conf 2014

See also

Standard API support

zone.js patched most standard web APIs (such as DOM events, XMLHttpRequest, ...) and nodejs APIs (EventEmitter, fs, ...), for more details, please see STANDARD-APIS.md.

Nonstandard API support

We are adding support to some nonstandard APIs, such as MediaQuery and Notification. Please see NON-STANDARD-APIS.md for more details.

Examples

You can find some samples to describe how to use zone.js in SAMPLE.md.

Modules

zone.js patches the async APIs described above, but those patches will have some overhead. Starting from zone.js v0.8.9, you can choose which web API module you want to patch. For more details, please see MODULE.md.

Bundles

There are several bundles under dist folder.

Bundle Summary
zone.js the default bundle, contains the most used APIs such as setTimeout/Promise/EventTarget..., also this bundle supports all evergreen and legacy (IE/Legacy Firefox/Legacy Safari) Browsers
zone-evergreen.js the bundle for evergreen browsers, doesn't include the patch for legacy browsers such as IE or old versions of Firefox/Safari
zone-legacy.js the patch bundle for legacy browsers, only includes the patch for legacy browsers such as IE or old versions of Firefox/Safari. This bundle must be loaded after zone-evergreen.js, zone.js=zone-evergreen.js + zone-legacy.js
zone-testing.js the bundle for zone testing support, including jasmine/mocha support and async/fakeAsync/sync test utilities
zone-externs.js the API definitions for closure compiler

And here are the additional optional patches not included in the main zone.js bundles

Patch Summary
webapis-media-query.js patch for MediaQuery APIs
webapis-notification.js patch for Notification APIs
webapis-rtc-peer-connection.js patch for RTCPeerConnection APIs
webapis-shadydom.js patch for Shady DOM APIs
zone-bluebird.js patch for Bluebird APIs
zone-error.js patch for Error Global Object, supports remove Zone StackTrace
zone-patch-canvas.js patch for Canvas API
zone-patch-cordova.js patch for Cordova API
zone-patch-electron.js patch for Electron API
zone-patch-fetch.js patch for Fetch API
zone-patch-jsonp.js utility for jsonp API
zone-patch-resize-observer.js patch for ResizeObserver API
zone-patch-rxjs.js patch for rxjs API
zone-patch-rxjs-fake-async.js patch for rxjs fakeasync test
zone-patch-socket-io.js patch for socket-io
zone-patch-user-media.js patch for UserMedia API

Promise A+ test passed

Promises/A+ 1.1 compliant

License

MIT

You can’t perform that action at this time.