Package recommendation for State management libraries

Author: jolleekinCreated Aug 26, 2026Updated Aug 26, 2026
Labelssimilar suggestion

npm package name

@kintools/store-core

Package category name

State management libraries

Alternative npm packages

zustand, jotai, @tanstack/store, @reduxjs/toolkit, mobx

Why is this a better alternative?

Kin Store is a reactive state library that allows you to start simple without upfront tax and only add structure when your app earns it.

Main highlights:

  • zero-dependency
  • framework-agnostic
  • 100% typesafe
  • tiny
  • no hidden magic

The core has three primitives

  • createStore: create a minial store with just get, set, subscribe. Nothing else.
  • withPlugins: add capabilities (methods, reducers, middleware) in a linear way.
  • derive: compose stores into new ones. It tracks what you read, not a graph you maintain.

Plugins (persist, history, immer, devtools, ...) and framework bindings are opt-in via separate packages.

Full comparison with code examples: https://kinstore.dev/comparison

Your relationship to the package

I am a maintainer or contributor

Submission checklist

  • I searched existing recommendations and issues for duplicates.