DEV Community

Cover image for Ng-News 26/02: Frameworks in 2026, Competition among Frameworks, Angular Inside
ng-news for This is Angular

Posted on

Ng-News 26/02: Frameworks in 2026, Competition among Frameworks, Angular Inside

This episode covers framework direction perspectives, a deep dive into Angular template type checking, and several community updates.

📺 Watch the full episode on YouTube:

Ryan Carniato on 2026

Ryan Carniato is the creator of Solid.js and has a good overview of what the various front-end frameworks are doing. He published an article where he gave his prediction for 2026.

The rise of powerful SSR techniques (he mentioned React Server Components and Astro’s island architecture) led to separate code paths—one for the server and one for the client. Ryan expects frameworks to reduce that friction and coined the term isomorphic-first for this. In my opinion, if you want to see that reduced friction in action, Angular’s incremental hydration gets it right.

Ryan sees asynchronicity as a central theme for the future. Frameworks will integrate async behavior more deeply rather than treating it as an add-on. Examples include Angular’s resource, and what React is doing under the “Async React” framing, which is a mix of techniques that work together.

Lastly on AI: Ryan says meta-frameworks used to win by packaging tools together, but AI can now stitch those basic tools on its own, so that advantage is shrinking.

Mark Thompson at PodRocket

Mark Thompson, DevRel on the Angular team, was a guest on the PodRocket podcast. It was aimed at a non-Angular audience, so most things that were discussed are broadly known, but at the end, Mark explained a little on how they see the competition. Every framework has a very similar feature set, and it is not that Angular wants to attract Svelte, React, or Vue users (or the other way around).

Every framework looks at its user and optimizes the framework for their users. Or to put it short: when it comes to new features, it is more what the Angular community wants and not so much what React developers want from Angular.

Apart from that, AI will bring changes in the way how developers write applications. They won't even care what framework is used, other things like MCP, context files could become more important.

Angular from the Inside (Angular Space)

Angular from the Inside was the title of the Angular Space podcast. Armen Vardanyan had Matthieu Riegler from the Angular team as a guest.

Matthieu showed how the template checks are actually working. He showed this in VSCode: Angular's compiler runs a special compilation just for the type check (via the language service for the VSCode integration) and then another compilation for the final application code.

They also discussed things beyond compilation: the most requested PR, general insights into how the Angular team works internally, a PR explained in detail, and an overview of what is going to come for Angular 21.1 (which has already been released).

An episode you don't want to miss if you are interested in learning some of Angular's internals.

https://www.youtube.com/live/vz4LZAimZBc

Tailwind Crisis

Tailwind is also in the news, but unfortunately with sad news. Their business model was based on selling UI components. Unfortunately, you usually only discover those products if you visit their website and documentation, which is what we developers usually do... or rather, used to do. Because these days, AI applies the proper Tailwind classes automatically. Although Tailwind is used more than ever, 75% of the engineering team has been laid off because the company became a victim of the current AI trend. The good news is that Vercel and Google have contacted them and stepped in with sponsorships to help find a solution.

https://github.com/tailwindlabs/tailwindcss.com/pull/2388#issuecomment-3717222957

Angular Three v4

Angular Three is a library from Chau Tran, which gives a deep integration of THREE.js into Angular. THREE.js is a very popular library for creating 3D graphics. Version 4 was released and the underlying renderer got completely rewritten.

So if you are already using Angular Three, the blog post recommends that you treat version 4 as a complete fresh start.

Community Shoutout: ngx-dev-toolbar

Shoutout to the community for new libraries. Alfredo Perez released ngx-dev-toolbar, which gives you a nice UI to apply common tasks, like toggling features, switching languages, mocking the network, and so on.

GitHub logo alfredoperez / ngx-dev-toolbar

A powerful development toolbar for Angular applications to improve your developer productivity directly in the browser.

Angular Toolbar

npm version Downloads License Angular

A development toolbar for Angular 19+ applications that helps developers interact with the application more efficiently.

Toolbar Demo

Why ngx-dev-toolbar?

  • Toggle feature flags without backend changes
  • Switch languages instantly
  • Test product features and subscription tiers
  • Switch themes on the fly
  • Change user sessions effortlessly
  • Mock network requests in real-time
  • Test permission-based UI without backend changes

No more context switching or backend dependencies - everything you need is right in your browser!

Installation

npm install ngx-dev-toolbar
Enter fullscreen mode Exit fullscreen mode

Quick Start

Initialize the toolbar in your main.ts for zero production bundle impact:

import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { isDevMode } from '@angular/core';
async function bootstrap() {
  const appRef = await bootstrapApplication(AppComponent, appConfig);

  // Initialize toolbar only in development
  if (isDevMode()) {
    const { initToolbar } = await import('ngx-dev-toolbar');
Enter fullscreen mode Exit fullscreen mode

If you have written a new library or are organizing a conference, please let us know. We are going to announce it here.

Top comments (0)