6d3a25d897
Currently we only run Saucelabs on PRs using the legacy View Engine build. Switching that build to Ivy is not trivial and there are various options: 1. Updating the R3 switches to use POST_R3 by default. At first glance, this doesn't look easy because the current ngtsc switch logic seems to be unidirectional (only PRE_R3 to POST_R3). 2. Updating the legacy setup to run with Ivy. This sounds like the easiest solution at first.. but it turns out to be way more complicated. Packages would need to be built with ngtsc using legacy tools (i.e. first building the compiler-cli; and then building packages) and View Engine only tests would need to be determined and filtered out. Basically it will result in re-auditing all test targets. This is contradictory to the fact that we have this information in Bazel already. 3. Creating a new job that runs tests on Saucelabs with Bazel. We specify fine-grained test targets that should run. This would be a good start (e.g. acceptance tests) and also would mean that we do not continue maintaining the legacy setup.. This commit implements the third option as it allows us to move forward with the general Bazel migration. We don't want to spend too much time on our legacy setup since it will be removed anyway in the future. PR Close #34277 |
||
---|---|---|
.. | ||
dist | ||
doc | ||
example | ||
lib | ||
scripts | ||
test | ||
BUILD.bazel | ||
CHANGELOG.md | ||
DEVELOPER.md | ||
MODULE.md | ||
NON-STANDARD-APIS.md | ||
README.md | ||
SAMPLE.md | ||
STANDARD-APIS.md | ||
bundles.bzl | ||
check-file-size.js | ||
file-size-limit.json | ||
karma-base.conf.js | ||
karma-build-jasmine-phantomjs.conf.js | ||
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 | ||
karma-build.conf.js | ||
karma-dist-jasmine.conf.js | ||
karma-dist-mocha.conf.js | ||
karma-dist-sauce-jasmine.conf.js | ||
karma-dist-sauce-jasmine.es2015.conf.js | ||
karma-dist-sauce-jasmine3.conf.js | ||
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 | ||
package.json | ||
presentation.png | ||
promise-adapter.js | ||
promise-test.js | ||
promise.finally.spec.js | ||
rollup-es5.config.js | ||
rollup-es5_global-es2015.config.js | ||
sauce-evergreen.conf.js | ||
sauce-selenium3.conf.js | ||
sauce.conf.js | ||
sauce.es2015.conf.js | ||
simple-server.js | ||
tsconfig.json |
README.md
Zone.js
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:
See also
- async-listener - a similar library for node
- Async stack traces in Chrome
- strongloop/zone (Deprecated)
- vizone - control flow visualizer that uses zone.js
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
License
MIT