npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nlabs/arkhamjs-middleware-redux

v3.26.2

Published

Integrate ArkhamJS state management within Redux

Downloads

8

Readme

@nlabs/arkhamjs-middleware-redux

ArkhamJS Redux middleware integrates ArkhamJS into existing redux applications to provide access to ArkhamJS features and/or provide a simple migration path to ArkhamJS.

npm version npm downloads Travis Issues TypeScript MIT license Chat

Installation

yarn add @nlabs/arkhamjs-middleware-redux

Usage

createArkhamStore

Create a Redux store that creates a two-way binding with ArkhamJS.

// Create Redux store
const store = createArkhamStore({
  arkhamMiddleware,
  devTools,
  flux,
  reducers,
  reduxMiddleware,
  statePath
});

A quick example on usage.

import {createArkhamStore} from '@nlabs/arkhamjs-middleware-redux';
import {Flux} from '@nlabs/arkhamjs';
import * as React from 'react';
import {render} from 'react-dom';
import {Provider} from 'react-redux';
import {App} from './components/App';
import {reducers} from './reducers';

// Initialize ArkhamJS
Flux.init({name: 'reduxTodos'});

// Create Redux store
const store = createArkhamStore({
  flux: Flux,
  reducers,
  statePath: 'todos'
});

// Render root component with store
render(
  <Provider store={store}>
    <App />
  </Provider>,
  document.getElementById('root')
);

Options

  • flux - (Flux) The Flux object you initialized in your app.
  • reducers - (Reducer) Redux root reducer. The reducer created by combineReducers().
  • statePath - (string[] | string) State tree path where to set this branch of the store's state tree.
  • arkhamMiddleware - (any[]) (optional) ArkhamJS options. Use only if intending to initialize a new instance.
  • devTools - (boolean) (optional) Enable/disable Redux dev tools. Default: false.
  • reduxMiddleware - (Middleware[]) (optional) Redux middleware. Any additional Redux middleware used in the app.

ReduxMiddleware

ArkhamJS middleware to relay dispatched actions to Redux.

// Create ArkhamJS middleware
const reduxMiddleware = new ReduxMiddleware(store, name);

A simple usage example:

import {ReduxMiddleware} from '@nlabs/arkhamjs-middleware-redux';
import {createStore} from 'redux';
import {reducers} from './reducers';

const store = createStore(reducers);
const middleware = [new ReduxMiddleware(store, 'myApp')];

Flux.init({middleware});
  • store - (Store) Redux root store. The store created by createStore().
  • name - (string) (optional) Middleware name. Should be unique if integrating with multiple Redux stores.

arkhamMiddleware

Redux middleware to relay Redux action dispatches to ArkhamJS.

// Create Redux middleware
const middleware = arkhamMiddleware(statePath);

A simple usage example:

import {arkhamMiddleware} from '@nlabs/arkhamjs-middleware-redux';
import {applyMiddleware, createStore} from 'redux';
import {reducers} from './reducers';

const store = createStore(reducers, applyMiddleware(arkhamMiddleware('myApp')));
  • statePath - (string[] | string) State tree path where to set this branch of the store's state tree.

Additional Documentation

Additional details may be found in the ArkhamJS Documentation.

Redux Todo example

The following is a full example using the Todo example within the Redux repository. The middleware will be added using the Flux.addMiddleware() automatically via the createArkhamStore() function.

import {Logger, LoggerDebugLevel} from '@nlabs/arkhamjs-middleware-logger';
import {createArkhamStore} from '@nlabs/arkhamjs-middleware-redux';
import {BrowserStorage} from '@nlabs/arkhamjs-storage-browser';
import {Flux} from '@nlabs/arkhamjs';
import * as React from 'react';
import {render} from 'react-dom';
import {Provider} from 'react-redux';
import App from './components/App';
import rootReducer from './reducers';

// Add a console logger for Arkham (optional).
const logger = new Logger({
  debugLevel: LoggerDebugLevel.DISPATCH
});

// Initialize ArkhamJS.
const Flux.init({
  name: 'reduxDemo', // Optional name of application, defaults to 'arkhamjs'
  storage: new BrowserStorage(), // Optional persistent storage cache
  middleware: [logger] // Optional console logger
});

// Create an ArkhamJS store for Redux
const store = createArkhamStore({
  flux: Flux,
  reducers: rootReducer,
  statePath: 'demo'
});

render(
  <Provider store={store}>
    <App />
  </Provider>,
  document.getElementById('root')
);