1.1.6 • Published 6 years ago

hyperapp-redux-devtools v1.1.6

Weekly downloads
22
License
MIT
Repository
github
Last release
6 years ago

hyperapp-redux-devtools

hyperapp HOA (higher order app) to utilize redux-devtools-extension from hyperapp

import { h, app } from 'hyperapp';
import devtools from 'hyperapp-redux-devtools';

devtools(app)(
  { count: 0 },
  {
    increment: () => (state) => Object.assign({}, state, { count: state.count + 1 })
  },
  (state, actions) => {
    return (
      <div>
        <button onclick={actions.increment}>Click</button>
        <span>{state.count}</span>
      </div>
    );
  },
  document.body
);

Dev vs. Prod

When deploying a Hyperapp with this HOA, it is advised you don't ship the devtools bundle with it:

With Webpack Dynamic Import

import { h, app } from 'hyperapp';

let main;

if (process.env.NODE_ENV !== 'production') {
  import('hyperapp-redux-devtools')
    .then((devtools) => {
      main = devtools(app)(...);
    });
} else {
  main = app(...);
}

With Conditional Require (Rollup/Gulp/etc..)

import { h, app } from 'hyperapp';
const devtools = process.env.NODE_ENV !== 'production'
  ? require('hyperapp-redux-devtools')
  : null;

let main;

if (devtools) {
  main = devtools(app)(...);
} else {
  main = app(...);
}
1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

2.0.9

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago