FastestReact state library

import { createStore, useStoreKey } from '@zaatar-tech/voltix';

const store = createStore({ count: 0 });
const inc = () => store.increment('count');

function Counter() {
  const count = useStoreKey(store, 'count');
  return (
    <div>
      <p>{count}</p>
      <button onClick={inc}>+1</button>
    </div>
  );
}

Live throughput

Five stores, same increment, running right now in your browser. Voltix leads because its update path mutates one field and notifies one key.