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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
The Cloudflare Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
小众软件
小众软件
量子位
月光博客
月光博客
P
Proofpoint News Feed
IT之家
IT之家
腾讯CDC
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
雷峰网
雷峰网
V
Visual Studio 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
Moving Beyond JSX: Why TSRX Caught My Eye
Shlomi Sela · 2026-05-02 · via DEV Community

Shlomi Sela

It’s been a minute since I posted here, but I recently stumbled across a project that genuinely made me stop and rethink how we write frontend code: TSRX (TypeScript Render Extensions).

If you work with React, JSX is practically second nature. We’ve all accepted its quirks as the cost of doing business. But let's be honest-after years of writing it, the cracks in the JSX developer experience are pretty obvious. TSRX feels like the exact upgrade to JSX we didn't know we were waiting for.

Here is why it stands out when you put it side-by-side with standard JSX:

1) The End of "Ternary Hell" (Native Control Flow) This is probably the biggest daily friction point in JSX. Because JSX forces everything inside the template to be an expression, we can't use native JavaScript statements.

The JSX Way: You want to conditionally render something? You're stuck writing nested ternary operators (condition ? : ) or chaining logical ANDs (&&). Need to render a list? You have to map over arrays inline (items.map(...)), often leading to messy, hard-to-read "JSX soup."

// The JSX Way
return (
  <div>
    {isLoading ? (
      <Spinner />
    ) : (
      <div>
        {items.length > 0 && (
          <ul>
            {items.map(item => (
              <li key={item.id}>{item.name}</li>
            ))}
          </ul>
        )}
      </div>
    )}
  </div>
);

Enter fullscreen mode Exit fullscreen mode

The TSRX Way: You just write normal code. You can use standard if, else, switch, and for statements directly inside your markup. The mental overhead of translating logic into expressions simply disappears. It looks and reads like standard programming.

// The TSRX Way
return (
  <div>
    {if (isLoading) {
      <Spinner />
    } else {
      <div>
        {if (items.length > 0) {
          <ul>
            {for (const item of items) {
              <li key={item.id}>{item.name}</li>
            }}
          </ul>
        }}
      </div>
    }}
  </div>
);

Enter fullscreen mode Exit fullscreen mode

2) Solving the "Rules of Hooks" Headache We all know the golden rule of React: Don't call Hooks conditionally.

The JSX Way: If you need a hook that only runs under certain conditions, you are forced to extract that logic into a brand new, artificially created sub-component. It fragments your codebase and forces you to context-switch just to satisfy the linter.

// The JSX Way
// You have to create a dedicated wrapper component just to use the hook conditionally
function DetailsWrapper({ id }) {
  const details = useDetails(id);
  return <Details data={details} />;
}

// Inside the parent component:
{showDetails && <DetailsWrapper id={id} />}

Enter fullscreen mode Exit fullscreen mode

The TSRX Way: TSRX uses a smart compiler. If you write an if block and place a Hook inside it, the TSRX compiler handles the heavy lifting behind the scenes, automatically extracting that block into a separate component during the build process. You get the DX of inline conditionals without breaking React's rules.

// The TSRX Way
// Just use the hook inside the condition. The compiler handles the extraction!
{if (showDetails) {
  const details = useDetails(id);
  <Details data={details} />
}}

Enter fullscreen mode Exit fullscreen mode

3) True Co-location (Variables Exactly Where You Need Them)

The JSX Way: If you need to calculate a derived variable for a specific piece of UI, you have to define it at the top of your component, far away from where it's actually used in the return statement.

// The JSX Way
function Product({ price, discount }) {
  // Declared way up here, far from the actual UI
  const discountPrice = price - (price * discount);

  return (
    <div>
      {/* ... lots of other UI components ... */}
      <div className="price-tag">
        ${discountPrice}
      </div>
    </div>
  );
}

Enter fullscreen mode Exit fullscreen mode

The TSRX Way: You can declare block-scoped variables (let or const) right inside your markup blocks. Your logic, structure, and styling live intimately together.

// The TSRX Way
function Product({ price, discount }) {
  return (
    <div>
      {/* ... lots of other UI components ... */}
      {
        // Declared exactly where it is used
        const discountPrice = price - (price * discount);
        <div className="price-tag">
          ${discountPrice}
        </div>
      }
    </div>
  );
}

Enter fullscreen mode Exit fullscreen mode

4) A Better Fit for Agents This structural clarity isn't just great for us; it's a massive win for the way we build software today. When we use Agents like Cursor or Claude to help write or refactor code, context fragmentation is the enemy. Because TSRX reduces the need to artificially split components and keeps logic natively readable, Agents can better understand the component's flow. The resulting code is easier to prompt and generate, and much less prone to AI-induced bugs.

The Verdict TSRX is still in Alpha, so keep it out of your production environments for now. But it compiles down to React, Preact, Solid, or Vue, ships with a solid VS Code extension, and can live side-by-side with your existing .tsx files.

It’s rare to see a tool that fundamentally challenges the way we write templates while actually improving readability. Check out the docs and give it a run locally-it might just change how you look at JSX.