Home

Awesome

@frontmen/hyperapp-redux-devtools

Travis CI codecov npm Slack

A Hyperapp higher-order app that logs state updates to redux devtools.

Try it Online

<!-- ![Screenshot](https://user-images.githubusercontent.com/3735164/34082934-657f864c-e31c-11e7-93d2-d70f190aa928.png) -->

Installation

Node.js

Install with npm / Yarn.

<pre> npm i <a href="https://www.npmjs.com/package/@frontmen/hyperapp-redux-devtools">@frontmen/hyperapp-redux-devtools</a> </pre>

Then with a module bundler like rollup or webpack use as you would anything else.

import withReduxDevtools from "@frontmen/hyperapp-redux-devtools"
// Or as a named import: 
import { withReduxDevtools } from "@frontmen/hyperapp-redux-devtools"

Browser

Download the minified library from the CDN.

<script src="https://unpkg.com/Frontmen/hyperapp-redux-devtools"></script>

You can find the library in window.withReduxDevtools.

Usage

import withReduxDevtools from '@frontmen/hyperapp-redux-devtools';

withReduxDevtools(app)(state, actions, view, document.body)
<!-- ## License @frontmen/hyperapp-redux-devtools is MIT licensed. See [LICENSE](LICENSE.md). -->