![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
react-adone
Advanced tools
State management for React build on top of immer and Context (optional)
Taking the good parts of Redux and React Context to build a flexible, scalable and easy to use state management solution.
Adone is heavily inspired by Redux, the main difference is the lack of reducers. Instead of React Provider and Consumer, we have Container
and Subscriber
, connected to the same instance of a Store (defined as actions and initial state) and make it's state (or part of it) and the actions bound to the instance available via render-prop API.
Each Subscriber
is responsible to get the instantiated Store (creating a new one with initialState
if necessary). That makes sharing state across you project extremely easy.
Similar to Redux thunk, actions receive a set of arguments to get and mutate the state. The default setState
implementation is similar to React setState
, called with an object that will be shallow merged with the current state. But you are free to replace that with something different, even like immer
for instance.
npm i react-adone
# or
yarn add react-adone
import { createStore, createSubscriber } from 'react-adone';
const Store = createStore({
// value of the store on initialisation
initialState = {
count: 0,
},
// actions that trigger store mutation
actions: {
increment: (by = 1) => ({ setState, getState }) => {
// mutate state synchronously
setState({
count: getState().count + by,
});
},
},
// optional, mostly used for easy debugging
name: 'counter',
})
const CounterSubscriber = createSubscriber(Store);
// app.js
import { CounterSubscriber } from './components/counter';
const App = () => (
<div>
<h1>My counter</h1>
<CounterSubscriber>
{/* Store state is the first argument and actions are the second one */}
{({ count }, { increment }) => (
<div>
{count}
<button onClick={increment}>+</button>
</div>
)}
</CounterSubscriber>
</div>
);
Visit the documentation website or check the docs folder.
See Adone in action: run npm run start
and then go and check each folder:
http://localhost:8080/basic-flow/
http://localhost:8080/advanced-flow/
http://localhost:8080/advanced-scoped-flow/
To test your changes you can run the examples (with npm run start
).
Also, make sure you run npm run preversion
before creating you PR so you will double check that linting, types and tests are fine.
This library merges ideas from redux, react-redux, redux-thunk, react-copy-write, unstated, bey, react-apollo just to name a few. Moreover it has been the result of months of discussions with ferborva, pksjce, TimeRaider, dpisani, JedWatson, and other devs at Atlassian.
FAQs
State management for React build on top of immer and Context (optional)
The npm package react-adone receives a total of 2 weekly downloads. As such, react-adone popularity was classified as not popular.
We found that react-adone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.