1.0.2 • Published 7 years ago

redux-action-host v1.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

redux-action-host

Redux middleware to add the hostname of the originating computer to action metadata.

npm version

npm install --save redux-action-host

Motivation

When writing networked applications that replay actions against multiple redux stores, it is desireable to know which host the action originated on.

Usage

import { createStore, applyMiddleware } from 'redux';
import actionHost from 'redux-action-host';
import reducers from './reducers';
import actionTypes from './constants/actionTypes';

const store = createStore(reducers, applyMiddleware(actionHost()));

All actions will now be dispatched with the hostname of the originating computer on the action meta.

{
  type: 'ACTION_TYPE',
  meta: {
    hostname: 'ubuntu'
  }
}

Advanced Usage

The hostname of the originating computer is retreived via the os module when in node.js. Do remove this dependency when using the library in the browser, supply the hostname to be used as the first parameter to the middleware.

const store = createStore(reducers, applyMiddleware(actionHost('ubuntu')));

If the middleware is not invoked with a hostname when used in the browser, a random hostname will be generated.

{
  type: 'ACTION_TYPE',
  meta: {
    hostname: 'browser-0f11ce'
  }
}