Skip to content

stenin-nikita/reatom

ย 
ย 

Repository files navigation

reatom logo

npm npm type definitions npm bundle size GitHub



Reatom is declarative and reactive state manager, designed for both simple and complex applications.

Goals and features

  • ๐Ÿฃ simple abstraction and friendly DX: minimum boilerplate and tiny API
  • โ—๏ธ static typed: best type inferences
  • โšก performance: performant updates for partial state changes
  • ๐Ÿ—œ small size: 2 KB gzipped
  • ๐Ÿ“ฆ modular: reusable instances (SSR)
  • ๐Ÿด lazy: solution for code splitting out of the box
  • ๐Ÿ”Œ framework-agnostic: independent and self-sufficient
  • ๐Ÿงช testing: simple mocking
  • ๐Ÿ›  debugging: immutable data, devtools (redux ecosystem support by adapter)
  • ๐Ÿ”ฎ deterministic: declarative and predictable specification of state shape and its mutations
  • ๐Ÿ‘ด ES5 support: by polyfills
  • ๐Ÿงฏ reliable: predictable flow exceptions
  • synchronous glitch free: resolve diamond problem
  • simple integration with other libraries (Observable, redux ecosystem, etc)
  • awkward to write bad code
  • easy to write good code

Description

Reatom is a blend of the one-way data flow (by flux and global store) and decentralized atoms for deterministic and flexible description of state and its changes.

Inspired by redux, kefir, effector

Data flow diagram:

reatom data flow

Installation

npm i @reatom/core

or

yarn add @reatom/core

Usage

Open in CodeSandbox

import { declareAction, declareAtom, map, createStore } from '@reatom/core'

/** Actions */
const increment = declareAction()
const add = declareAction()

/** Atoms */
const countAtom = declareAtom(1, on => [
  on(increment, state => state + 1),
  on(add, (state, payload) => state + payload),
])
const isOddAtom = map(countAtom, count => Boolean(count % 2))

/** Store */
const store = createStore()

store.subscribe(countAtom, count => console.log('`count` state: ', count))
store.subscribe(isOddAtom, isOdd => console.log('`isOdd` state: ', isOdd))
store.subscribe(add, payload => console.log('`add` payload: ', payload))

store.dispatch(increment())
// `count` state: 2
// `isOdd` state: false

store.dispatch(add(2))
// `count` state: 4
// `add` payload: 2
// here `isOdd` subscriber will not be called because its value is not changed

Packages

Package Version Size
@reatom/core npm npm bundle size
@reatom/react npm npm bundle size
@reatom/angular npm npm bundle size
@reatom/observable npm npm bundle size
@reatom/babel-plugin npm -
@reatom/debug npm npm bundle size

Motivation

Why another state manager? The reason is dissatisfaction with existing solutions that do not cover our requirements. We strive to create a lightweight state manager that combines the best solutions proven over the years and personal experience.

NOTE. Please do not consider these arguments as a way to dissuade you from using these libraries. These are very interesting projects and they deserve your attention. This list only shows the motivation for creating Reatom.

Redux

link to repository

  • Selectors are not inspectable (lacking in devtools).
  • Difficult static type inference (every selector must know the full path to parent state).
  • Hard for modular architecture (every selector must know about parent state).
  • Separation of interfaces (reducers and selectors) complicates the prototyping of separated domains.
  • Selectors - manual API for state. They must be manually described and memoized.
  • Selectors are executed after state change at subscriptions - error in selector will throw an error. Also it is not possible (possible, but really hard) to restore the previous valid state.
  • Classic reducer API and [static] type descriptions have a lot of boilerplate.
  • Selectors are "runtime" oriented; if a "feature" uses any part of the state (by selector) and later you remove this part, you will get an error only when mounting your "feature" at runtime (if you do not have static typing). The single solution is to connect all features statically by imports.
  • Middleware is a confusing pattern that can unexpectedly modify the behavior of the store. For example, actions for redux-thunk do not log.

    Some problems can be solved by various fabric functions and third party libriaries. This makes it diffcuilt to reuse solutions across multiple projects.

Effector

link to repository

  • Effector is about atomic stores โ€” it uses stateful approach and has a problems as a any Producers:
    • probable memory leaks, because an store existents controlled not by a consumers (subscribers), but by a data sources, that is a more common.

      if you have a source A and derived source B and C, even if only B has a subscribers and need to application workflow, C still be receiving an updates and calculate it, even if nobody need it.

    • difficult [store] instance reusability.

      It can be solved, but it is better to solve it by design of a library architecture and API

  • Asynchronous and probably cyclic dependencies specification - it less predictable than describe all dependencies with instance creation.
  • The size (Reatom is 3 times lighter).
  • Throw in reducer does not cancel the computations in other reducers

MobX

link to repository

Community

Follow us on Twitter @reatomjs

Telegram

Mass media


Next:

Contributors โœจ

Thanks goes to these wonderful people (emoji key):


Arutyunyan Artyom

๐Ÿ’ป ๐Ÿค” โš ๏ธ ๐Ÿš‡ โœ… ๐Ÿ‘€ ๐Ÿ’ก ๐Ÿ“–

Sergey Belozyorcev

๐Ÿ’ป ๐Ÿค” โš ๏ธ ๐Ÿš‡ โœ… ๐Ÿ‘€ ๐ŸŽจ ๐Ÿ’ก ๐Ÿ“–

Alexey

๐Ÿ’ป ๐Ÿค” ๐Ÿš‡ โš ๏ธ ๐Ÿ“ฆ ๐Ÿ”Œ ๐Ÿ”ง

Anton

๐Ÿ“–

Taymuraz Kaytmazov

๐Ÿ“–

Ilya

๐Ÿ“–

Shmavon Gazanchyan

๐Ÿ“– ๐Ÿš‡

Ilya Zaitsev

๐Ÿ“–

Ivakhnenko Dmitry

๐Ÿ’ป

Paul Ekshmidt

๐Ÿš‡

ะ›ัƒะฑัะฝะพะน ะ•ะฒะณะตะฝะธะน

๐Ÿ’ป

Nikita Stenin

๐Ÿ’ป ๐Ÿš‡

Alexander Zenov

๐Ÿ’ป

ivan-nemtinov

๐Ÿ’ป

Viktor Pasynok

๐Ÿ’ป

This project follows the all-contributors specification. Contributions of any kind welcome!

About

State manager with a focus of all needs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 95.4%
  • JavaScript 4.6%