infernojs/inferno

:fire: An extremely fast, React-like JavaScript library for building modern user interfaces

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 18 minutes ago
Added to GitGenius on September 3rd, 2026
Created on February 1st, 2015
Open Issues & Pull Requests: 40 (+0)
GitHub issues: Enabled
Number of forks: 640
Total Stargazers: 16,457 (+0)
Total Subscribers: 258 (+0)

Repository Insights (GitGenius)

Most active contributors

Sign in to see contributor activity.

Related repositories by overlapping contributors

No overlapping-contributor repos identified yet.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Issue API getrepoissuespagesummary failed: 429 Rate limit exceeded. Please try again later.

Detailed Description

Inferno is a JavaScript library for building user interfaces with a React-like API that prioritizes runtime performance.

Inferno addresses the need for fast rendering of real-time data views and large DOM trees through multiple low-level optimizations. Its JSX compilers generate monomorphic createVNode calls rather than createElement calls, reducing runtime overhead. The diff algorithm uses bitwise flags to memoize object shapes, and child nodes are normalized only when necessary. Compiler plugins for SWC, Babel, and TypeScript allow developers to apply special JSX flags at compile time to further optimize application-level performance. The library also includes numerous micro-optimizations throughout its codebase.

Inferno suits projects where rendering performance is a primary concern, particularly those handling real-time data or large DOM structures. Developers familiar with React will find the component-driven, one-way data flow architecture immediately recognizable. The library distinguishes itself from React and Preact by supporting lifecycle events on functional components and providing controlled components for input, select, and textarea elements. Unlike other React-like libraries, Inferno includes a linkEvent feature that eliminates the need for arrow functions or manual binding in event callbacks. The tool supports isomorphic rendering through inferno-server, works in older browsers without polyfills, and provides features like createPortal for rendering components outside their normal hierarchy, along with Fragments, createRef, and forwardRef APIs.

The project maintains active development with regular updates to its core library and ecosystem packages. The codebase includes dedicated packages for server-side rendering, animation support, and compatibility layers. Development activity shows consistent refinement of the compiler plugins and ongoing optimization work across the runtime.