blecsd-game

Installation
SKILL.md

@blecsd/game Package Skill

The @blecsd/game package provides a high-level API for building terminal games with blECSd. It wraps the core ECS world, input system, and game loop into a simple createGame() factory. All blECSd functional programming rules apply.

Install: pnpm add @blecsd/game Peer dependency: blecsd >= 0.7.0 Import: import { createGame } from '@blecsd/game'

Quick Start

import { createGame } from '@blecsd/game';

const game = createGame({
  title: 'My Game',
  width: 80,
  height: 24,
  targetFPS: 30,
  mouse: true,
Related skills
Installs
4
First Seen
Feb 16, 2026