Hookstate

The simple but very powerful and incredibly fast state management for React that is based on hooks
GitHub
1.66k
Created 5 years ago, last commit a month ago
28 contributors
1.14k commits
Stars added on GitHub, month by month
11
12
1
2
3
4
5
6
7
8
9
10
2023
2024
Stars added on GitHub, per day, on average
Yesterday
+1
Last week
+0.3
/day
Last month
+0.2
/day
Last 12 months
+0.1
/day
npmPackage on NPM
Monthly downloads on NPM
11
12
1
2
3
4
5
6
7
8
9
10
2023
2024
No dependencies
README

Hookstate

The most straightforward, extensible and incredibly fast state management that is based on React state hook.


Why?Docs / SamplesDemo applicationExtensionsRelease notes

Preface

Hookstate is a modern alternative to Redux, Mobx, Recoil, etc. It is simple to learn, easy to use, extensible, very flexible and capable to address all state management needs of large scalable applications. It has got impressive performance and predictable behavior.

Any questions? Just ask by raising a GitHub ticket.

Why Hookstate

hookstate.js.org

Migrating to version 4

hookstate.js.org/docs/migrating-to-v4

Documentation / Code samples / Demo applications

hookstate.js.org/docs/getting-started

Demo application

Development tools

hookstate.js.org/docs/devtools

Plugins / Extensions

hookstate.js.org/docs/extensions-overview

API reference

hookstate.js.org/docs/typedoc-hookstate-core

Hookstate developers workflow

This is the mono repository, which combine the Hookstate core package, extensions, docs and demo applications. pnpm is used as node_modules manager and nx as a scripts launcher. Each package defines its own rules how to build, test, etc.

From the repository root directory:

  • npm install -f pnpm - install pnpm tool

  • pnpm install - install node_modules for all packages

  • pnpm nx <script> <package> - run script for a package as well as build dependencies if required, for example:

    • pnpm nx build core - run build script for core package
    • pnpm nx start todolist - run start script for todolist package as well as build for all dependencies