hyperapp icon indicating copy to clipboard operation
hyperapp copied to clipboard

1kB-ish JavaScript framework for building hypertext applications

Results 14 hyperapp issues
Sort by recently updated
recently updated
newest added

In modern browsers, can we use a `Proxy` instead of hard coding all the element types? I'm using this right now: ```js import { h } from "./lib/hyperapp.js"; const {...

enhancement

I'm looking for a way to make hyperapp respect existing markup thats inside the app and leave it untouched. My problem is quite similar to the issues @frenzzy and @gyopiazza...

enhancement

Newbie here, two questions regarding versions: - the releases page (https://github.com/jorgebucaran/hyperapp/releases) tags 1.2.9 as "latest", does that mean 2.x is not production ready ? are there still breaking changes planned...

I'm trying to use the the dispatch initializer as it is in the example with a log effect ``` const middleware = (dispatch) => (action, payload) => { // Dispatch...

Hi Jorge, similar to [PR 1036](https://github.com/jorgebucaran/hyperapp/pull/1036) I suggest replacing `node.appendChild(child)` with `node.append(child)`. Difference explained here: https://dev.to/ibn_abubakre/append-vs-appendchild-a4m. Benefit: 5 characters/bytes of code less. Regards, Sven

enhancement

Hi, I'm running into some issues when using `hyperapp` (`^2.0.13`) with `typescript` (`^4.2.3`). I remember trying things about about 6 months ago and had similar experiences but thought maybe the...

question
types

Hi Jorge, not sure if you still want to support olden and not-at-all-golden Internet Explorer. If you're ditching it, then we could as well inch ourselves closer to more modern...

enhancement

I created a view engine based on the DOM template tag, which compiles to hyperscript functions: [cannabis](https://github.com/marcodpt/cannabis) See for example what the README.md example looks like: ```html hyperapp + cannabis...