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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
G
Google Developers Blog
J
Java Code Geeks
C
Check Point Blog
Last Week in AI
Last Week in AI
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 司徒正美
IT之家
IT之家
Martin Fowler
Martin Fowler
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
U
Unit 42
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
I
InfoQ

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
Why I Built a High-Performance 2D/2.5D Engine in TypeScri...
Misha Mitiev · 2026-05-11 · via DEV Community

Misha Mitiev

Hi everyone! 👋

I’m Misha Mitiev, a solo developer. I’ve spent the last several months in the trenches of browser performance, and I joined this community to share the progress of Loom Engine (v1.7.6).

Loom is a 2D/2.5D game engine built from scratch in TypeScript. It was born out of a specific need: I needed a deterministic, browser-first simulation engine to power TheWorldTable.ai.

I quickly realized that traditional Object-Oriented Programming (OOP) in JavaScript wasn't going to cut it for the scale I wanted. Here is a look at the architecture choices that make Loom Engine tick.

The Architecture: ECS + SoA
Most engines use "Game Objects." Loom uses an Entity Component System (ECS) with a Structure-of-Arrays (SoA) memory layout.

If you aren't familiar with the term, instead of having an array of "Player" objects, Loom stores data in flat TypedArrays.

The Problem: Traditional objects are scattered across the heap, making the CPU work harder to find them (Cache Misses).

The Loom Solution: By using SoA, I keep all "Position" data in one contiguous block of memory and all "Velocity" data in another. This makes iteration lightning-fast and extremely friendly to the browser's V8 engine.

Why Determinism Matters
Because Loom powers AI-driven simulations, I needed the engine to be 100% deterministic. This means that given the same input, the simulation must play out exactly the same way on every browser, every time. Achieving this in TypeScript required a strict SSE (Server-Sent Events) networking layer and a core loop that doesn't rely on variable frame rates.

What I’m Solving Right Now:
Zero-Allocation Loops: I'm currently hunting down every new keyword in my update loops to ensure the Garbage Collector never has a reason to pause the simulation.

Custom WebGL2 Batching: I'm building a renderer that reads directly from the ECS buffers to draw thousands of entities in a single draw call.

Why I'm Here
I’m looking to connect with other engineers interested in Data-Oriented Design, low-level TypeScript optimizations, and the future of browser-based simulations.

Building an engine from scratch is a massive undertaking, but seeing 100,000 entities move at a locked 60 FPS makes the "coordinate system nightmares" worth it. 😅

The Mainframe UI runs on just 28 entities, but
 when the simulation kicks in, Loom scales to 100k without breaking a sweat.

I'd love to hear from you: Have you ever experimented with ECS in the browser? What are your biggest hurdles when it comes to JS/TS performance?