# hyperapp
**Repository Path**: mirrors_mjackson/hyperapp
## Basic Information
- **Project Name**: hyperapp
- **Description**: 1 KB JavaScript library for building web applications.
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-25
- **Last Updated**: 2026-05-31
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Hyperapp
[](https://travis-ci.org/hyperapp/hyperapp) [](https://codecov.io/gh/hyperapp/hyperapp) [](https://www.npmjs.org/package/hyperapp) [](https://hyperappjs.herokuapp.com "Join us")
Hyperapp is a JavaScript library for building web applications.
* **Minimal**: Hyperapp was born out of the attempt to do more with less. We have aggressively minimized the concepts you need to understand while remaining on par with what other frameworks can do.
* **Functional**: Hyperapp's design is inspired by [The Elm Architecture](https://guide.elm-lang.org/architecture). Create scalable browser-based applications using a functional paradigm. The twist is you don't have to learn a new language.
* **Batteries-included**: Out of the box, Hyperapp combines state management with a VDOM engine that supports keyed updates & lifecycle events — all with no dependencies.
[Read the documentation](/docs/README.md#documentation) to get started or [try it online](https://codepen.io/hyperapp/pen/zNxZLP?editors=0010).
```jsx
import { h, app } from "hyperapp"
const state = {
count: 0
}
const actions = {
down: () => state => ({ count: state.count - 1 }),
up: () => state => ({ count: state.count + 1 })
}
const view = (state, actions) => (
{state.count}
npm i hyperappThen with a module bundler like [Rollup](https://github.com/rollup/rollup) or [Webpack](https://github.com/webpack/webpack), use as you would anything else. ```jsx import { h, app } from "hyperapp" ``` If you prefer not to use a build system, you can load Hyperapp from [unpkg](https://unpkg.com/hyperapp) or [jsDelivr](https://cdn.jsdelivr.net/npm/hyperapp@latest/dist/hyperapp.js) and it will be globally available through the `window.hyperapp` object. ```html ``` We support all ES5-compliant browsers, including Internet Explorer 10 and above. ## Community * [Slack](https://hyperappjs.herokuapp.com) * [/r/Hyperapp](https://www.reddit.com/r/hyperapp) * [Twitter](https://twitter.com/hyperappjs) ## License Hyperapp is MIT licensed. See [LICENSE](LICENSE.md).