惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Vercel News
Vercel News
博客园_首页
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
博客园 - Franky
Engineering at Meta
Engineering at Meta
量子位
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Frameworks matter more in the age of AI
Ayobami Ogun · 2026-05-20 · via DEV Community

About three months ago, I saw a post on X claiming that AI has ended framework wars. The more I thought about it, the more I realised the opposite is true.

If AI truly ended framework innovation, it would be a disadvantage to software engineering.

AI has made it easier for developers to experiment with different tools and ecosystems. Today, switching between React, Vue, Svelte, Laravel, Django, or Solid is easier than ever because AI reduces the friction of learning syntax and boilerplate but framework wars were never really about syntax.

Frameworks are structured systems of abstractions, conventions, rendering models, state management patterns, and architectural decisions. They exist because software complexity keeps increasing.

AI adds to that complexity. It can generate components, scaffold APIs, and suggest implementations but it cannot replace the architectural guarantees frameworks provide. Once applications become stateful, distributed, asynchronous, and context-heavy, structure becomes more important than code generation itself.

The real competition between frameworks is no longer about developer experience alone. It is about which abstractions can support emerging problems such as AI orchestration, shared client-server context, asynchronous rendering, concurrent interactions, browser-native agents, speech synthesis and streaming interfaces.

Let's examine some of the emerging problems one by one.


Client-server unification

One of the oldest problems in web development is the separation between the client and the server.

Even today, most frameworks still treat them as different environments with different execution models, different contexts, and different rendering pipelines.

React, Vue, Svelte, Solid, and others attempt to bridge this gap but the boundary still exists. They all force you to fetch on one side and synchronise it response on another, leading to context duplication.

AI applications rely heavily on context like conversation history, memory, tool state, user intent, streaming data, orchestration state, and agent coordination. Yet we are forced to duplicate and manage all of those complexity on the client and the server.

The web needs frameworks capable of treating the client and server as a continuous execution environment instead of two disconnected worlds communicating through fragile synchronization patterns. This is not something AI solves automatically. It is a framework problem.


Asynchronous Rendering

Existing approaches to asynchronous rendering still struggle with AI-native orchestration patterns.

Many frameworks support asynchronous data fetching and partial interactivity, but true asynchronous rendering, where rendering itself behaves as a first-class asynchronous process, remains limited and it is extremely important in the AI era because AI systems are inherently asynchronous.

We need agents to call tools, subagents to delegate tasks and sync operations with ease.

Traditional UI architectures struggle with this model because they were designed around deterministic interaction flows.

As a result, developers end up writing excessive coordination logic for state synchronization, loading orchestration, race-condition handling, streaming workarounds, nested async effects and concurrency patches

The complexity spreads everywhere not because AI is flawed but because most frontend architectures were never designed for AI-native execution models.

A truly asynchronous rendering system would allow interfaces themselves to participate in orchestration flows instead of merely reacting to completed operations.

That changes everything.

It means agents and subagents can become naturally embedded into web interfaces instead of existing as sidebars, terminals, or isolated chat windows. The browser stops being a passive renderer and becomes an orchestration environment.


Speech Synthesis

Speech systems expose another major gap in modern web frameworks.

Running speech-to-text or text-to-speech over the network is expensive. Latency, scalability, bandwidth, privacy and infrastructure costs quickly become difficult to manage.

Browsers already provide speech capabilities through the Speech Synthesis API but the developer experience is inconsistent and difficult to control reliably.

Events such as onboundary and onmark, which are critical for synchronised speech interactions behave inconsistently across browsers.

That inconsistency makes it difficult to build reliable speech-driven interfaces. And again, this is not an AI problem. It is a framework problem.

What developers need is a client-side architecture capable of treating speech as a first-class interactive system instead of a disconnected browser feature.

Once speech becomes properly integrated into rendering and interaction systems, browser-native AI agents become more practical. Interfaces stop feeling like static pages with chat overlays. They start behaving like responsive conversational systems.


Framework Wars Are Necessary

AI did not end framework wars. If anything, it made them more important.

Every new layer of complexity creates demand for better abstractions, better execution models, and better ways to structure systems. That is exactly what frameworks are for.

Discouraging framework innovation will not simplify AI development. It will only leave developers with complex problems and fewer architectural tools capable of solving them.

Frameworks remain one of the most effective ways we have to turn powerful capabilities into scalable, maintainable, and reliable systems.

The future of AI on the web will not be determined only by models. It will also be determined by the frameworks capable of making those models programmable, interactive, asynchronous, and composable at scale. So framework wars are not over. The next generation has begun.


Have you experienced any of these challenges while building AI applications or modern web systems?

I would love to hear your perspective in the comments.