Get started with hyperapp CDN
MIT licensed
Minimalist JS framework: Hyperapp - unidirectional data flow, functional components.
Tags:- framework
- hyperapp
- frontend
- vdom
- web
- app
- ui
Stable version
Copied!
How to start using hyperapp CDN
const { h, app } = require('hyperapp');
const state = { count: 0 };
const actions = {
increment: () => ({ count: state.count + 1 })
};
const view = (state, actions) => h('div', [
h('p', 'Count: ' + state.count),
h('button', { onclick: actions.increment }, 'Increment')
]);
app({ state, actions, view }, document.body);
Copied!
Copied!
All versions
0.0.1
0.0.10
0.0.11
0.0.12
0.0.13
0.0.14
0.0.2
0.0.3
0.0.4
0.0.5
0.0.6
0.0.7
0.0.8
0.0.9
0.1.0
0.10.0
0.10.1
0.11.0
0.12.0
0.12.1
0.13.0
0.14.0
0.15.0
0.15.1
0.16.0
0.16.1
0.16.2
0.17.0
0.17.1
0.18.0
0.18.1
0.18.2
0.18.3
0.18.4
0.18.5
0.2.0
0.2.1
0.3.2
0.4.0
0.4.1
0.4.2
0.5.0
0.6.0
0.7.0
0.7.1
0.8.0
0.8.1
0.9.0
0.9.1
0.9.2
0.9.3
1.0.0
1.0.1
1.0.2
1.1.0
1.1.1
1.1.2
1.2.0
1.2.1
1.2.10
1.2.2
1.2.3
1.2.4
1.2.5
1.2.6
1.2.7
1.2.8
1.2.9
2.0.0
2.0.0-alpha.0
2.0.0-alpha.1
2.0.0-alpha.10
2.0.0-alpha.2
2.0.0-alpha.3
2.0.0-alpha.4
2.0.0-alpha.5
2.0.0-alpha.6
2.0.0-alpha.7
2.0.0-alpha.8
2.0.0-alpha.9
2.0.0-beta.1
2.0.0-beta.10
2.0.0-beta.11
2.0.0-beta.12
2.0.0-beta.13
2.0.0-beta.14
2.0.0-beta.15
2.0.0-beta.16
2.0.0-beta.17
2.0.0-beta.18
2.0.0-beta.19
2.0.0-beta.2
2.0.0-beta.20
2.0.0-beta.21
2.0.0-beta.22
2.0.0-beta.24
2.0.0-beta.25
2.0.0-beta.3
2.0.0-beta.4
2.0.0-beta.5
2.0.0-beta.6
2.0.0-beta.7
2.0.0-beta.8
2.0.0-beta.9
2.0.1
2.0.10
2.0.11
2.0.12
2.0.13
2.0.14
2.0.15
2.0.16
2.0.17
2.0.18
2.0.19
2.0.2
2.0.20
2.0.21
*** 2.0.22
2.0.3
2.0.4
2.0.5
2.0.6
2.0.7
2.0.8
2.0.9