Preact is a lightweight alternative to React that implements the same core component and hooks model in a tiny footprint. It provides a virtual DOM, diffing, and a familiar Component/JSX API, enabling developers to reuse much of their React knowledge. With preact/compat, many React libraries can be used directly, making migration or code sharing practical in performance-sensitive apps. Its focus on size and speed makes it attractive for embedded widgets, mobile web, and scenarios where initial load must be extremely fast. The library embraces modern patterns like functional components, hooks, and context while keeping the API surface minimal. Tooling integrations and ecosystem packages round out the experience, so teams can ship production apps without sacrificing bundle budgets.
Features
- Tiny bundle size (~3.5 kB) making it highly performance-oriented
- Near-same component model and API as React, enabling familiarity and ease of learning
- Uses native DOM event system instead of synthetic events for improved performance and simpler behavior
- Offers preact/compat layer to use React ecosystem libraries directly
- Ships with TypeScript definitions for seamless typed development
- Offers Signals—reactive primitives enabling automatic, efficient UI updates and state binding