Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@angular/platform-browser-dynamic
Advanced tools
Angular - library for using Angular in a web browser with JIT compilation
The @angular/platform-browser-dynamic npm package provides methods for bootstrapping Angular applications in a browser environment with Just-In-Time (JIT) compilation. This package is typically used for development purposes, as it compiles the application dynamically in the browser, allowing for a faster development cycle. However, for production builds, Ahead-Of-Time (AOT) compilation is preferred for performance reasons, which is handled by the @angular/platform-browser package.
Bootstrapping Angular Modules
This code snippet demonstrates how to bootstrap an Angular module using the platformBrowserDynamic function. It imports the AppModule and then calls the bootstrapModule method to initialize the application.
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.error(err));
This package provides tools for running Angular applications in a web browser with Ahead-Of-Time (AOT) compilation. Unlike @angular/platform-browser-dynamic, it is optimized for production by pre-compiling templates to make the application load faster and be more performant.
Similar to @angular/platform-browser-dynamic for Angular, react-dom is used for bootstrapping and rendering React applications in the browser. It provides the entry point to the DOM and server renderers for React and can be considered an equivalent in the React ecosystem.
The Vue.js framework has a similar package for bootstrapping and rendering Vue applications in the browser. It provides the functionality to create and mount the root Vue instance to the DOM, similar to how Angular applications are bootstrapped with @angular/platform-browser-dynamic.
The sources for this package are in the main Angular repo. Please file issues and pull requests against that repo.
Usage information and reference details can be found in Angular documentation.
License: MIT
19.0.6 (2025-01-08)
| Commit | Type | Description | | -- | -- | -- | | 06a55e9817 | fix | account for more expression types when determining HMR dependencies (#59323) | | 17fb20f85d | fix | preserve defer block dependencies during HMR when class metadata is disabled (#59313) |
| Commit | Type | Description |
| -- | -- | -- |
| 07afce81b8 | fix | Ensure that a destroyed effect
never run. (#59415) |
| Commit | Type | Description | | -- | -- | -- | | dbb8980d03 | fix | avoid circular DI error in async renderer (#59271) | | 6d00efde95 | fix | styles not replaced during HMR when using animations renderer (#59393) |
| Commit | Type | Description | | -- | -- | -- | | 144bccb687 | fix | avoid component ID collisions with user code (#59300) |
<!-- CHANGELOG SPLIT MARKER --><a name="19.1.0-next.4"></a>
FAQs
Angular - library for using Angular in a web browser with JIT compilation
The npm package @angular/platform-browser-dynamic receives a total of 2,460,611 weekly downloads. As such, @angular/platform-browser-dynamic popularity was classified as popular.
We found that @angular/platform-browser-dynamic demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.