Pixi Framework is a lightweight, TypeScript-first frontend framework for building reactive web applications. Version 0.16.5 is the latest stable release, with periodic updates. It offers a minimal API with reactive state management and a virtual DOM, positioning itself as a simpler alternative to libraries like React or Vue for small to medium projects. It is ESM-only and enforces type safety through TypeScript definitions.
npm install pixi-frameworkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
This example creates a reactive state object, initializes an app with a template that renders the count, and mounts it to the DOM element with id 'app'.
Convert to ESM: use import statements instead of require().
Replace `render` with `template` in createApp configuration.
Initialize all reactive state before calling createApp.
Update custom directives to use new vnode interface as per migration guide.
Add "type": "module" to your package.json, or use .mjs extension, or in browsers use <script type="module">.
Use `import { createApp } from 'pixi-framework'` instead of `import createApp from 'pixi-framework'`.No dependency data recorded yet.