Redux Toolkit

The official, opinionated, batteries-included toolset for efficient Redux state management

Library
npm
v2.12.0
11,223stars
MIT License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
93/100Excellent
Development Activity100
Maintenance96
Community76
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
92/100Excellent
Architecture90
Code Quality93
Innovation95
Learning Curve85

Redux Toolkit (RTK) is the official, recommended way to write Redux logic. It wraps the Redux core with sensible defaults and a set of higher-level APIs that eliminate the boilerplate traditionally associated with Redux: store configuration, immutable update logic, action creators, and reducer definitions all collapse into a few concise function calls.

Beyond core state management, RTK ships RTK Query, a powerful data-fetching and caching layer that generates hooks for your API endpoints and manages loading, caching, and invalidation automatically. Together they let teams manage global application state and server state with a single, type-safe, well-documented toolset.

What You Get

  • configureStore() with good defaults, DevTools integration, and redux-thunk preconfigured
  • createSlice() that generates action creators and reducers from a single declarative object
  • createAsyncThunk() and createEntityAdapter() for async flows and normalized data
  • RTK Query for declarative data fetching, caching, and auto-generated React hooks
  • End-to-end TypeScript types with strong inference across slices, thunks, and selectors

Common Use Cases

  • Managing global client state in React single-page applications
  • Fetching, caching, and synchronizing server data with RTK Query
  • Modeling normalized collections of entities with generated reducers and selectors
  • Migrating legacy hand-written Redux code to a leaner, standardized structure

Under The Hood

Architecture Redux Toolkit is a layered wrapper over the Redux core. configureStore.ts composes applyMiddleware, createStore, and combineReducers from the redux package, layering in getDefaultMiddleware (redux-thunk, serializability and immutability dev checks) and getDefaultEnhancers (auto-batching, DevTools). createSlice.ts builds on createReducer.ts and createAction.ts, running reducer logic through Immer so mutative-looking code yields immutable state; matchers, listenerMiddleware, dynamicMiddleware, and the entities adapter round out the core. RTK Query lives in a separate src/query entry point that builds an API slice, cache reducer, and middleware on top of the same core, with a src/query/react layer generating endpoint hooks.

Tech Stack Written in TypeScript (5.9) and shipping ~97% TypeScript source. Runtime dependencies are immer 11, redux 5, redux-thunk 3, reselect 5, and @standard-schema for validation; React and react-redux are optional peer dependencies. Bundled with tsup into ESM, CJS, and browser builds, and tested with Vitest (including type-level tests via —typecheck).

Code Quality Coverage is thorough: 25+ runtime test files under src/tests plus a dedicated RTK Query test suite, alongside numerous .test-d.ts type-level tests that assert the public API’s inferred types. The codebase is strictly typed with dedicated tsHelpers.ts utilities, clear module boundaries per API, and consistent naming.

API Design The public API is deliberately compact and ergonomic — configureStore, createSlice, createAsyncThunk, and createApi cover the vast majority of use cases with minimal boilerplate. Documentation is excellent (a full docs site, extensive guides, and examples directory), and the APIs are designed to make the correct patterns the path of least resistance.

Used by 28 apps in this directory

TypeScript
94%
MIT

Actual

Invoicing Finance

28,593

Local-first personal finance with envelope budgeting, end-to-end encryption, and multi-device sync — no subscription required.

View details
93
Repo Health
85
Technical
77
Dependency
Built with
TypeScript94%
Updated today
Python
98%
MIT

Agent Lightning

AI Development

18,000

A Microsoft-built training framework that optimizes AI agents with reinforcement learning, automatic prompt optimization, or supervised fine-tuning — with near-zero code changes to your existing agent, in any framework.

View details
83
Repo Health
68
Technical
70
Dependency
Built with
Python98%
Updated 5 days ago
TypeScript
60%
Other

agenta

Developer Tools · Devops · AI Development

4,706

The open-source LLMOps platform unifying prompt engineering, evaluation, and observability for teams building reliable LLM applications.

View details
91
Repo Health
77
Technical
67
Dependency
Built with
TypeScript60%
Python38%
Updated yesterday
TypeScript
68%
Apache 2.0

Appsmith

Developer Tools · Automation · No Code Platforms

40,825

Open-source low-code platform to build admin panels, dashboards, and internal tools connected to any database or API.

View details
93
Repo Health
79
Technical
66
Dependency
Built with
TypeScript68%
Java21%
Updated 3 days ago
TypeScript
97%
AGPL 3.0

Bigcapital

Invoicing Finance

3,884

Self-hostable double-entry accounting platform with invoicing, inventory, multi-currency, and real-time financial reporting for small and medium businesses.

View details
91
Repo Health
77
Technical
61
Dependency
Built with
TypeScript97%
Updated yesterday
JavaScript
99%
Other

ChartBrew

Analytics · Databases

4,054

Open-source reporting platform to build live dashboards from SQL, NoSQL, APIs, and SaaS tools with an AI assistant that creates charts from natural language.

View details
90
Repo Health
83
Technical
64
Dependency
Built with
JavaScript99%
Updated 4 days ago
TypeScript
98%
AGPL 3.0

Checkmate

Devops · Analytics · Monitoring

10,794

Self-hosted uptime and infrastructure monitoring with multi-protocol checks, global geo-coverage, and beautiful real-time dashboards.

View details
91
Repo Health
82
Technical
68
Dependency
Built with
TypeScript98%
Updated yesterday
TypeScript
84%
Apache 2.0

Continue

Developer Tools · AI Development · AI Code Assistants

35,808

Open-source coding agent for VS Code, JetBrains, and CLI with support for 30+ LLM providers.

View details
81
Repo Health
88
Technical
62
Dependency
Built with
TypeScript84%
Updated yesterday
Go
49%
Other

Cosmos-Server

Security · Authentication

6,146

All-in-one self-hosted home server with SmartShield anti-DDoS, Nebula mesh VPN, automatic HTTPS, and a 250-app marketplace — all secured behind a unified auth layer.

View details
85
Repo Health
59
Technical
64
Dependency
Built with
Go49%
JavaScript48%
Updated 2 days ago

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search