|
| 1 | +# Angular without ZoneJS (Zoneless) |
| 2 | + |
| 3 | +## Why use Zoneless? |
| 4 | + |
| 5 | +The main advantages to removing ZoneJS as a dependency are: |
| 6 | + |
| 7 | +- **Improved performance**: ZoneJS uses DOM events and async tasks as indicators of when application state _might_ have updated and subsequently triggers application synchronization to run change detection on the application's views. ZoneJS does not have any insight into whether application state actually changed and so this synchronization is triggered more frequently than necessary. |
| 8 | +- **Improved Core Web Vitals**: ZoneJS brings a fair amount of overhead, both in payload size and in startup time cost. |
| 9 | +- **Improved debugging experience**: ZoneJS makes debugging code more difficult. Stack traces are harder to understand with ZoneJS. It's also difficult to understand when code breaks as a result of being outside the Angular Zone. |
| 10 | +- **Better ecosystem compatibility**: ZoneJS works by patching browser APIs but does not automatically have patches for every new browser API. Some APIs simply cannot be patched effectively, such as `async`/`await`, and have to be downleveled to work with ZoneJS. Sometimes libraries in the ecosystem are also incompatible with the way ZoneJS patches the native APIs. Removing ZoneJS as a dependency ensures better long-term compatibility by removing a source of complexity, monkey patching, and ongoing maintenance. |
| 11 | + |
| 12 | +## Enabling Zoneless in an application |
| 13 | + |
| 14 | +The API for enabling Zoneless is currently experimental. Neither the shape, nor the underlying behavior is stable and can change |
| 15 | +in patch versions. There are known feature gaps, including the lack of an ergonomic API which prevents the application from serializing too early with Server Side Rendering. |
| 16 | + |
| 17 | +```typescript |
| 18 | +// standalone bootstrap |
| 19 | +bootstrapApplication(MyApp, {providers: [ |
| 20 | + provideExperimentalZonelessChangeDetection(), |
| 21 | +]}); |
| 22 | + |
| 23 | +// NgModule bootstrap |
| 24 | +platformBrowser().bootstrapModule(AppModule); |
| 25 | +@NgModule({ |
| 26 | + providers: [provideExperimentalZonelessChangeDetection()] |
| 27 | +}) |
| 28 | +export class AppModule {} |
| 29 | +``` |
| 30 | + |
| 31 | +## Removing ZoneJS |
| 32 | + |
| 33 | +Zoneless applications should remove ZoneJS entirely from the build to reduce bundle size. ZoneJS is typically |
| 34 | +loaded via the `polyfills` option in `angular.json`, both in the `build` and `test` targets. Remove `zone.js` |
| 35 | +and `zone.js/testing` from both to remove it from the build. Projects which use an explicit `polyfills.ts` file |
| 36 | +should remove `import 'zone.js';` and `import 'zone.js/testing';` from the file. |
| 37 | + |
| 38 | +After removing ZoneJS from the build, there is no longer a need for a `zone.js` dependency either and the |
| 39 | +package can be removed entirely: |
| 40 | + |
| 41 | +```shell |
| 42 | +npm uninstall zone.js |
| 43 | +``` |
| 44 | + |
| 45 | +## Requirements for Zoneless compatibility |
| 46 | + |
| 47 | +Angular relies on notifications from core APIs in order to determine when to run change detection and on which views. |
| 48 | +These notifications include: |
| 49 | + |
| 50 | +- `ChangeDetectorRef.markForCheck` (called automatically by `AsyncPipe`) |
| 51 | +- `ComponentRef.setInput` |
| 52 | +- Updating a signal that's read in a template |
| 53 | +- Bound host or template listeners callbacks |
| 54 | +- Attaching a view that was marked dirty by one of the above |
| 55 | + |
| 56 | +### `OnPush`-compatible components |
| 57 | + |
| 58 | +One way to ensure that a component is using the correct notification mechanisms from above is to |
| 59 | +use [ChangeDetectionStrategy.OnPush](/best-practices/skipping-subtrees#using-onpush). |
| 60 | + |
| 61 | +The `OnPush` change detection strategy is not required, but it is a recommended step towards zoneless compatibility for application components. It is not always possible for library components to use `ChangeDetectionStrategy.OnPush`. |
| 62 | +When a library component is a host for user-components which might use `ChangeDetectionStrategy.Default`, it cannot use `OnPush` because that would prevent the child component from being refreshed if it is not `OnPush` compatible and relies on ZoneJS to trigger change detection. Components can use the `Default` strategy as long as they notify Angular when change detection needs to run (calling `markForCheck`, using signals, `AsyncPipe`, etc.). |
| 63 | + |
| 64 | +### Remove `NgZone.onMicrotaskEmpty`, `NgZone.onUnstable`, `NgZone.isStable`, or `NgZone.onStable` |
| 65 | + |
| 66 | +Applications and libraries need to remove uses of `NgZone.onMicrotaskEmpty`, `NgZone.onUnstable` and `NgZone.onStable`. |
| 67 | +These observables will never emit when an Application enables zoneless change detection. |
| 68 | +Similarly, `NgZone.isStable` will always be `true` and should not be used as a condition for code execution. |
| 69 | + |
| 70 | +The `NgZone.onMicrotaskEmpty` and `NgZone.onStable` observables are most often used to wait for Angular to |
| 71 | +complete change detection before performing a task. Instead, these can be replaced by `afterNextRender` |
| 72 | +if they need to wait for a single change detection or `afterRender` if there is some condition that might span |
| 73 | +several change detection rounds. In other cases, these observables were used because they happened to be |
| 74 | +familiar and have similar timing to what was needed. More straightforward or direct DOM APIs can be used instead, |
| 75 | +such as `MutationObserver` when code needs to wait for certain DOM state (rather than waiting for it indirectly |
| 76 | +through Angular's render hooks). |
| 77 | + |
| 78 | +<docs-callout title="NgZone.run and NgZone.runOutsideAngular are compatible with Zoneless"> |
| 79 | +`NgZone.run` and `NgZone.runOutsideAngular` do not need to be removed in order for code to be compatible with |
| 80 | +Zoneless applications. In fact, removing these calls can lead to performance regressions for libraries that |
| 81 | +are used in applications that still rely on ZoneJS. |
| 82 | +</docs-callout> |
| 83 | + |
| 84 | +### `PendingTasks` for Server Side Rendering (SSR) |
| 85 | + |
| 86 | +If you are using SSR with Angular, you may know that it relies on ZoneJS to help determine when the application |
| 87 | +is "stable" and can be serialized. If there are asynchronous tasks that should prevent serialization, an application |
| 88 | +not using ZoneJS will need to make Angular aware of these with the `PendingTasks` service. Serialization |
| 89 | +will wait for the first moment that all pending tasks have been removed. |
| 90 | + |
| 91 | +```typescript |
| 92 | +const taskService = inject(PendingTasks); |
| 93 | +const taskCleanup = taskService.add(); |
| 94 | +await doSomeWorkThatNeedsToBeRendered(); |
| 95 | +taskCleanup(); |
| 96 | +``` |
| 97 | + |
| 98 | +The framework uses this service internally as well to prevent serialization until asynchronous tasks are complete. These include, but are not limited to, |
| 99 | +an ongoing Router navigation and an incomplete `HttpClient` request. |
| 100 | + |
| 101 | +## Testing and Debugging |
| 102 | + |
| 103 | +### Using Zoneless in `TestBed` |
| 104 | + |
| 105 | +The zoneless provider function can also be used with `TestBed` to help |
| 106 | +ensure the components under test are compatible with a Zoneless |
| 107 | +Angular application. |
| 108 | + |
| 109 | +```typescript |
| 110 | +TestBed.configureTestingModule({ |
| 111 | + providers: [provideExperimentalZonelessChangeDetection()] |
| 112 | +}); |
| 113 | + |
| 114 | +const fixture = TestBed.createComponent(MyComponent); |
| 115 | +await fixture.whenStable(); |
| 116 | +``` |
| 117 | + |
| 118 | +To ensure tests have the most similar behavior to production code, |
| 119 | +avoid using `fixture.detectChanges()` when possible. This forces |
| 120 | +change detection to run when Angular might otherwise have not |
| 121 | +scheduled change detection. Tests should ensure these notifications |
| 122 | +are happening and allow Angular to handle when to synchronize |
| 123 | +state rather than manually forcing it to happen in the test. |
| 124 | + |
| 125 | +### Debug-mode check to ensure updates are detected |
| 126 | + |
| 127 | +Angular also provides an additional tool to help verify that an application is making |
| 128 | +updates to state in a zoneless-compatible way. `provideExperimentalCheckNoChangesForDebug` |
| 129 | +can be used to periodically check to ensure that no bindings have been updated |
| 130 | +without a notification. Angular will throw `ExpressionChangedAfterItHasBeenCheckedError` |
| 131 | +if there is an updated binding that would not have refreshed by the zoneless change |
| 132 | +detection. |
0 commit comments