Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hyperapp-redux-devtools

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyperapp-redux-devtools

hyperapp HOA to utilize redux-devtools-extension for time travel debugging capabilities

  • 1.1.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
59
increased by9.26%
Maintainers
1
Weekly downloads
 
Created
Source

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(...);
}

Keywords

FAQs

Package last updated on 25 Feb 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc