ECS in JS – A Closer Look at Component Storage
A pattern to avoid when designing an ECS for JavaScript
Dec 11, 20217 min read1.7K
Search for a command to run...
Articles tagged with #ecs
A pattern to avoid when designing an ECS for JavaScript
I maintain a JavaScript library called Javelin: a toolkit for building multiplayer games in TypeScript. At the core of Javelin is an Entity-Component System (ECS). In this article, I discuss ECS storage mechanisms, Javelin's current strategy, and how...