Tired of bloated Redux setups? Fed up with complex Zustand configurations?
Welcome to React-ConStore – the ultra-lightweight state management solution that actually makes sense!

While others burden your app with 2-3KB+, we keep it lean and mean
Built for modern React with full concurrent features support
Components update ONLY when their data actually changes
No new concepts to learn – if you know hooks, you know ConStore
// Create store in seconds const store = createStore({ count: 0, user: { name: 'Guest' } }); // Use anywhere with familiar hooks function Counter() { const [count, setCount] = store.useStoreKey('count'); return ( <button ={() => setCount(count + 1)}> Count: {count} </button> ); }
That's it! No providers, no reducers, no middleware hell!
Library Size Complexity React 19 Ready React-ConStore ~950B ✨ Minimal ✨ ✅ Redux Toolkit ~2.5KB High ✅ Zustand ~2.1KB Medium ✅ Jotai ~2.8KB Medium ✅
"Finally, a state library that doesn't make me want to pull my hair out!"
"Migrated from Redux in 10 minutes. My bundle size dropped by 60%!"
"Perfect for Next.js 13+ App Router. Just works!"
npm install react-constore # or yarn add react-constore
One command. Zero configuration. Infinite possibilities.
⭐ Star us on GitHub
📦 Install today
🚀 Ship faster apps tomorrow
React-ConStore: Because your state management should be simple, not a PhD thesis.
#ReactJS #StateManagement #JavaScript #TypeScript #WebDev #React18 #React19