Skip to content

FlexiumUnified State & Reactivity

Simpler, Faster, Unified. The next-generation UI framework.

Flexium

Quick Example

tsx
import { state } from 'flexium/core'

function Counter() {
  // Local state with unified API
  const [count, setCount] = state(0)

  return (
    <button onclick={() => setCount(c => c + 1)}>
      Count: {count}
    </button>
  )
}

Installation

bash
npm create flexium@latest my-app
cd my-app
npm run dev

Or add to existing project:

bash
npm install flexium

Released under the MIT License.