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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
博客园 - 【当耐特】
V
Visual Studio Blog
GbyAI
GbyAI
V
V2EX
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
量子位
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件

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 Solve UI. Engines Solve Businesses.
Drew Marshal · 2026-05-18 · via DEV Community

Most web frameworks solve one part of the problem really well:
building interfaces.

And to be clear, that matters.

Good frameworks improved developer experience dramatically over the last decade. They gave us component systems, routing, hydration, SSR, state management patterns, and ecosystems that helped developers move faster than ever before.

But after spending years building applications, infrastructure, APIs, deployment systems, and operational tooling, I started noticing a pattern:

Most businesses don’t actually struggle with rendering buttons on a screen.

They struggle with everything around the application.

  • Infrastructure
  • Scaling
  • Deployment
  • Authentication
  • Integrations
  • Permissions
  • Monitoring
  • Operational workflows
  • Data portability
  • Multi-service communication
  • Lifecycle management
  • Vendor lock-in
  • Organizational growth

Frameworks help you build applications.

Businesses need systems that survive growth.

That distinction changed how I think about software entirely.


The Shift From “Pages” to “Systems”

For a long time, I thought in terms of websites and apps.

Now I think in terms of operational ecosystems.

That mental shift is what eventually led me toward building what I now call an engine-based architecture approach with projects like WebEngine, KiwiPress, and the broader CitrusWorx ecosystem.

Not because “frameworks are bad.”

Far from it.

But because eventually I realized something important:

A framework helps you build a product.

An engine helps you operate a business.

Those are not the same thing.


A Framework Usually Ends at the App Layer

Most frameworks are focused primarily on:

  • rendering
  • routing
  • state
  • API consumption
  • build tooling
  • frontend/backend execution

That’s useful.

But businesses eventually need much more than application code.

They need:

  • deployment strategies
  • environment orchestration
  • scalable infrastructure
  • observability
  • role systems
  • workflow automation
  • content pipelines
  • integration pipelines
  • modular expansion
  • operational tooling
  • tenant management
  • data governance
  • blueprinting and repeatability

At some point, the “app” becomes the smallest part of the problem.

The operational system becomes the real product.


The Racecar Problem

One analogy I keep coming back to is this:

A racecar driver shouldn’t need to manufacture every part of the car before racing.

They should be able to:

  • choose proven components
  • assemble systems
  • tune performance
  • focus on execution

Software often does the opposite.

Every team rebuilds:

  • auth
  • CMS layers
  • deployment flows
  • admin systems
  • billing
  • workflow tooling
  • API structures
  • permissions
  • environments
  • integrations

Over and over again.

Not because they want to.

Because most tooling stops at the framework layer instead of the operational layer.


This Is Where “Blueprint Thinking” Started For Me

I started becoming less interested in:

“How do I build another app?”

And more interested in:

“How do I create repeatable operational systems?”

That’s where the idea of blueprints came from.

Not templates.

Not themes.

Operational blueprints.

For example:

  • a pizzeria system
  • a creator storefront
  • a print-on-demand business
  • a course platform
  • a church management system
  • a local service business stack

Each one has:

  • workflows
  • permissions
  • operational states
  • integrations
  • infrastructure needs
  • communication patterns
  • scaling concerns

Businesses aren’t just interfaces.

They’re living operational systems.


Engines Think Beyond the Frontend

This is where I think engines become interesting.

An engine doesn’t just ask:

“How do we render this page?”

It asks:

  • How does this deploy?
  • How does this scale?
  • How does this integrate?
  • How does this evolve?
  • How does this stay maintainable?
  • How does this remain portable?
  • How do teams operate this safely?
  • How do we reduce hidden complexity?
  • How do we create repeatable systems?

That’s a much larger problem space.

But I think it’s the problem space the industry is gradually moving toward.

Especially as infrastructure, AI, automation, and distributed systems become more intertwined with everyday application development.


Why This Matters More in the AI Era

AI is making it easier than ever to generate application code quickly.

But speed alone doesn’t solve operational architecture.

If anything, I think it exposes weak architecture faster.

Because generated code still has to:

  • scale
  • integrate
  • remain secure
  • remain understandable
  • remain maintainable
  • survive organizational growth

That’s why I’ve become increasingly interested in:

  • contracts
  • explicit systems
  • pipelines
  • modular runtimes
  • infrastructure-aware development
  • declarative architecture

Not because they’re trendy.

Because operational clarity matters.

Especially when systems become large.


I Don’t Think the Future Is “No-Code”

And I don’t think it’s “AI builds everything.”

I think the future is better operational abstraction.

Systems where:

  • infrastructure is more intentional
  • architectures are more explicit
  • workflows are more composable
  • businesses can move faster without sacrificing clarity

That’s ultimately the direction I’m exploring with CitrusWorx and WebEngine.

Not replacing frameworks.

Building around the parts frameworks usually leave behind.


Final Thoughts

Frameworks changed the web.

No question.

But I think the next evolution isn’t just about building apps faster.

It’s about building operational systems more intelligently.

Because eventually every successful application becomes:

  • infrastructure
  • workflows
  • operations
  • governance
  • scaling
  • lifecycle management

In other words:

Eventually every app becomes a business system.

And business systems need more than UI rendering.

They need engines.