1.0.0-alpha.12 โ€ข Published 4 years ago

@reatom/future v1.0.0-alpha.12

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

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,
  combine,
  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))
const rootAtom = combine({ count: countAtom, isOdd: isOddAtom })

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

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

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

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

Packages

PackageVersionSize
@reatom/corenpmnpm bundle size
@reatom/reactnpmnpm bundle size
@reatom/observablenpmnpm bundle size
@reatom/babel-pluginnpm-
@reatom/debugnpmnpm 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 that has certain problems:
    • probable memory leaks (as every unit of effector is a hot observable, thats less safety than cold observables)

      Like any other observable libraries

    • 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

    const store = createStore(0)
    store.watch(console.log)
    
    const event = createEvent()
    store.on(event, (state, payload) => payload)
    
    event(1000)
    // console.log: 1000
    
    // In any time and in any project part
    const otherEvent = createEvent()
    store.on(otherEvent, (state, payload) => payload)
    
    otherEvent(2000)
    // console.log: 2000
  • The size

  • 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:

  • Glossary
  • Examples
  • FAQ
  • Contributing

Contributors โœจ

Thanks goes to these wonderful people (emoji key):

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