Socket
Socket
Sign inDemoInstall

hyperapp-debug

Package Overview
Dependencies
1
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hyperapp-debug

[![Travis CI](https://img.shields.io/travis/mrozbarry/hyperapp-debug.svg)](https://travis-ci.org/mrozbarry/hyperapp-debug) [![npm](https://img.shields.io/npm/v/hyperapp-debug.svg)](https://www.npmjs.com/package/hyperapp-debug) [![Discord](https://img.shie


Version published
Maintainers
1
Install size
624 kB
Created

Readme

Source

<img height=24 src=https://cdn.rawgit.com/JorgeBucaran/f53d2c00bafcf36e84ffd862f0dc2950/raw/882f20c970ff7d61aa04d44b92fc3530fa758bc0/Hyperapp.svg> Hyperapp Debug

Travis CI npm Discord

A debugger for your Hyperapp applications.

What is it

hyperapp-debug is a debugger for your hyperapp development flow. It gives you insight into state transitions, when effects are fired, or if you have stubborn subscriptions.

Hyperapp V1

If you are debugging Hyperapp V1 applications, check out the legacy debugger.

Installation

Install with npm or Yarn.

npm i hyperapp-debug

Then with a module bundler like Rollup or Webpack, use as you would anything else.

import { app, h } from 'hyperapp';
import { debuggable } from 'hyperapp-debug';

Or with <script type="module"> and unpkg:

import { app, h } from 'https://unpkg.com/hyperapp?module=1';
import { debuggable } from 'https://unpkg.com/hyperapp-debug?module=1';

If you don't want to set up a build environment, you can download Hyperapp Debug from a CDN like unpkg.com, and it will be globally available through the window['hyperapp-debug'].default object. hyperapp-debug supports all ES5-compliant browsers, including Internet Explorer 10 and above.

<head>
  <script src="https://unpkg.com/hyperapp"></script>
  <script src="https://unpkg.com/hyperapp-debug"></script>
</head>
<body>
  <script>
    const { app, h } = window.hyperapp;
    const { debuggable } = window['hyperapp-debug'];
    // Your code here...
  </script>
</body>

Usage

Use debuggable to wrap Hyperapp's app function.

import { app } from 'hyperapp';
import { debuggable, adapters } from 'hyperapp-debug';

debuggable(app)({
  init: {},
  view: () => null,
  subscriptions: () => [],
  node: document.getElementById('your-app'),
  debug: {
    enable: true,
    adapter: adapters.ConsoleAdapter.use,
    id: 'your-custom-id',
  },
});

Adapters

Check out the Adapters documentation.

History

For those coming from the elm community, you may notice much inspiration from Elm's time-travelling debugger :heart:.

Contributing

Check out the CONTRIBUTING.md guidelines for more information.

License

Hyperapp Debug is MIT licensed. See LICENSE.md.

Other similar tools

FAQs

Last updated on 13 Nov 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc