This episode explores what lies ahead for frameworks, unpacks how Angular’s template type-checking really works, and rounds up a few notable community releases.
📺 Watch the full episode on YouTube:
Ryan Carniato Looks Ahead to 2026
Ryan Carniato, the mind behind Solid.js, keeps a close eye on what every major front-end framework is up to. In a recent article, he shared his own forecast for the year ahead.
The surge of robust SSR approaches — he pointed specifically to React Server Components and Astro’s island architecture — has created a split: one code path for the server, another for the client. Carniato believes frameworks will work to close that gap, and he introduced the term isomorphic-first for this direction. If you ask me, Angular’s incremental hydration is a strong example of what that reduced friction can look like in practice.
He also sees asynchronicity becoming a core concern rather than an afterthought. Future frameworks will weave async behavior into their very fabric. Angular’s resource is one such instance, and React’s “Async React” initiative — essentially a bundle of complementary techniques — is another.
On AI, Carniato notes that meta-frameworks historically won by bundling useful tools together. With AI now able to assemble those same primitives on its own, that edge is fading.
Mark Thompson on PodRocket
Mark Thompson, who handles DevRel for the Angular team, joined the PodRocket podcast as a guest. The conversation was designed for listeners who aren’t Angular developers, so much of the ground covered was familiar territory. But near the end, Thompson offered a glimpse into how they view the competitive landscape. The feature sets across frameworks have converged to a remarkable degree, and Angular isn’t trying to lure developers away from Svelte, React, or Vue — nor are those frameworks actively courting Angular users.
Each framework focuses on its own audience and shapes itself around what those developers need. In short, when new capabilities are introduced, the driving force is what the Angular community asks for, not what React developers might want to see in Angular.
Beyond that, AI is set to shift how developers build applications. The choice of framework may matter less; other elements like MCP and context files could take on greater significance.
Inside Angular with Angular Space
The Angular Space podcast recently ran an episode titled Angular from the Inside. Host Armen Vardanyan sat down with Matthieu Riegler, a member of the Angular team.
Riegler offered a live demonstration of how template checks function under the hood. Using VSCode, he showed that Angular’s compiler performs a dedicated compilation purely for type checking — powered by the language service for the editor integration — and then runs a second, separate compilation to produce the final application code.
The conversation also covered areas beyond compilation: the most-requested PR, some thoughts on the internal workings of the Angular team, a walkthrough of a specific PR, and a preview of what Angular 21.1 would bring (that release has since landed).
If you’re curious about Angular’s internals, this episode is well worth your time.
https://www.youtube.com/live/vz4LZAimZBc
The Tailwind Situation
Tailwind has also been making headlines, though the news is grim. The company’s business model hinged on selling UI components. Unfortunately, those products were typically discovered through the website and documentation — exactly what developers routinely consult, or rather, what they used to consult. These days, AI can apply the correct Tailwind classes on its own. Even as Tailwind sees record usage, 75% of the engineering staff has been let go, as the company fell victim to the ongoing AI shift. On a brighter note, Vercel and Google have reached out with sponsorships to help chart a path forward.
https://github.com/tailwindlabs/tailwindcss.com/pull/2388#issuecomment-3717222957
Angular Three Hits v4
Angular Three, Chau Tran’s library that tightly integrates THREE.js with Angular, has released version 4. THREE.js is widely used for building 3D graphics on the web. This major release includes a complete rewrite of the underlying renderer.
For anyone already working with Angular Three, the release notes advise treating v4 as an entirely new beginning.
Community Spotlight: ngx-dev-toolbar
Time to give a nod to the community for a fresh library. Alfredo Perez has put out ngx-dev-toolbar, a tool that provides a clean interface for handling routine tasks like feature toggling, language switching, network mocking, and more.
alfredoperez
/
ngx-dev-toolbar
A powerful development toolbar for Angular applications to improve your developer productivity directly in the browser.
A development toolbar for Angular 19+ applications that helps developers interact with the application more efficiently.
What Makes ngx-dev-toolbar Useful?
- Flip feature flags without touching the backend
- Emulate full i18n setups: locale, timezone, currency, and RTL
- Exercise product features and subscription plans
- Swap themes instantly
- Switch between user sessions with minimal effort
- Intercept and mock network calls live
- Validate permission-gated UI without backend work
You no longer have to juggle contexts or depend on a backend — all the tools live directly in your browser.
Setting It Up
Install the package with npm:
npm install ngx-dev-toolbar
Getting Started
Register the toolbar in app.config.ts together with your existing providers:
// app.config.ts import { ApplicationConfig, isDevMode } from '@angular/core'; import { provideRouter } from '@angular/router'; import { provideToolbar } from 'ngx-dev-toolbar'; export const appConfig: ApplicationConfig = { providers: [ provideRouter(appRoutes), provideToolbar({ enabled: isDevMode(), }), ], };
Then bootstrap your application as usual in main.ts:
// main.ts
Built something new or hosting a conference? Reach out — we will feature it here.

