The future is standalone!

Angular v19 will make standalone: true
the default for components, directives, and pipes.
In v14 we introduced a developer preview “standalone” feature, which made it possible for the first time to build an application that didn’t rely on NgModules. Since then, standalone has been stabilized, and has become the recommended way to write Angular code by the Angular team. The CLI generates components with standalone: true
by default, and the Angular docs teach standalone first to all new Angular developers. Adoption is strong and continues to grow across the Angular ecosystem, both in the largest Angular applications written at Google as well as applications across the internet.
Not only does standalone make Angular easier to learn and get started with, it’s also enabled a few exciting new features. In @angular/router
, loadComponent
simplifies route-level lazy loading significantly and relies on standalone functionality. The Directive Composition API enables a better composition model for component behavior by allowing standalone directives to be applied in the declaration of a host component or directive. And of course, Deferrable Views transparently lazy-load standalone components and directives at the template level, making it easier than ever to optimize your Angular applications.
In v19 we’ll take the next step, and flip the default of the standalone
flag in components, directives, and pipes, so you’ll never need to type “standalone: true
” again. With this change, components like:
will be written as:
What if I’m still using NgModules?
That’s fine — we’re not deprecating the standalone
option or NgModules themselves. You’ll still be able to write NgModule components by specifying standalone: false
in the component decorator.
What will I need to do for my existing standalone or NgModules code?
As part of ng update for v19, we’ll apply an automated migration which will:
- Remove
standalone: true
for existing standalone components, as it will be the new default. - Add
standalone: false
to existing NgModule components so they continue to work.
Optionally, you’ll be able to set the strictStandalone
compiler option to enforce that only standalone components are written in your application.
What about FormsModule & other npm libraries with NgModules?
Nothing will change here. Standalone components can continue to import NgModule dependencies as needed, even with the strictStandalone
compiler option enabled.
If you’re authoring a library published on NPM, you also don’t need to do anything — your components will behave correctly when imported by users regardless of whether they’re using v19 with the new default or not.