What is @angular/platform-browser?
The @angular/platform-browser package provides services that are essential for running Angular applications in a web browser. This includes DOM manipulation, rendering, and browser interaction APIs.
What are @angular/platform-browser's main functionalities?
DOM Manipulation
The BrowserModule provides services that are necessary for any web app, such as DOM rendering, sanitization, and location. It should be imported once in the root module of the app.
import { BrowserModule } from '@angular/platform-browser';
@NgModule({
imports: [BrowserModule],
...
})
export class AppModule { }
Browser Event Handling
The package allows components to handle browser events such as resize, keyup, and more through the HostListener decorator.
import { Component, HostListener } from '@angular/core';
@Component({...})
export class MyComponent {
@HostListener('window:resize', ['$event'])
onResize(event) {
// Handle the browser resize event
}
}
Safe Interpolation
The DomSanitizer service helps prevent Cross Site Scripting Security bugs (XSS) by sanitizing values to be safe to use in the different DOM contexts.
import { DomSanitizer } from '@angular/platform-browser';
@Component({...})
export class MyComponent {
safeUrl;
constructor(private sanitizer: DomSanitizer) {
this.safeUrl = this.sanitizer.bypassSecurityTrustResourceUrl('https://example.com');
}
}
Other packages similar to @angular/platform-browser
react-dom
Similar to @angular/platform-browser for Angular, react-dom is used with React to interact with the DOM. It provides methods for rendering components into the DOM and working with the DOM elements.
vue
Vue is a progressive framework for building user interfaces. It provides its own methods for DOM manipulation and updates, similar to what @angular/platform-browser does for Angular applications.
preact
Preact is a fast 3kB alternative to React with the same modern API. It provides similar functionalities for rendering and handling the DOM as @angular/platform-browser does for Angular.
17.2.3 (2024-02-27)
common
| Commit | Type | Description |
| -- | -- | -- |
| 1a526f2881 | perf | AsyncPipe
should not call markForCheck
on subscription (#54554) |
compiler-cli
| Commit | Type | Description |
| -- | -- | -- |
| 2aefed8763 | fix | catch function instance properties in interpolated signal diagnostic (#54325) |
| 48aec63ee4 | fix | identify aliased initializer functions (#54480) |
| daf7c611b2 | fix | identify aliased initializer functions (#54609) |
core
| Commit | Type | Description |
| -- | -- | -- |
| 57123524a2 | fix | collect providers from NgModules while rendering @defer
block (#52881) |
| 79a32816dc | fix | fix typo in injectors.svg file (#54596) |
migrations
| Commit | Type | Description |
| -- | -- | -- |
| dbe673b027 | fix | resolve infinite loop for a single line element with a long tag name and angle bracket on a new line (#54588) |
<!-- CHANGELOG SPLIT MARKER -->
<a name="17.2.2"></a>