0.3.0 • Published 6 years ago

hyperapp-devtools v0.3.0

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

hyperapp-devtools

Developer tools for Hyperapp projects.
These tools have been extracted from hyperstart's debugger.

This is an higher order application (HOA) that records every action and allow the user to see input argument, output and state at every step.

See it in action here:

debugger in action

Installation

Install it from npm:

npm install hyperapp-devtools --save-dev

Or get it directly from unpkg:

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

Usage

Just wrap your hyperapp:

import { h, app } from "hyperapp"
import devtools from "hyperapp-devtools"

const state = {
  count: 0
}

const actions = {
  down: value => state => ({ count: state.count - value }),
  up: value => state => ({ count: state.count + value })
}

const view = (state, actions) => (
  <div>
    <h1>{state.count}</h1>
    <button onclick={() => actions.down(1)}>-</button>
    <button onclick={() => actions.up(1)}>+</button>
  </div>
)

devtools(app)(state, actions, view, document.body)

Contributing

Once you cloned the project and npm install the dependencies, you can run the examples with npm start.

License

MIT

0.3.0

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.4

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago