Your favorite hyperapp framework, now rendered server-side.
# Using npm
npm install hyperapp-server hyperapp
# Using yarn
yarn add hyperapp-server
At the moment, hyperapp-server only supports static rendering. True server rendering coming soon!
import { h } from "hyperapp"
import { toString } from "hyperapp-server"
const vnode = h("div", null, "Hi.")
const html = toString(vnode)
// html = "<div>Hi.<div>"
No software is free of bugs. If you're not sure if something is a bug or not, file an issue anyway. Questions, feedback and feature requests are welcome too.
HyperApp is MIT licensed. See LICENSE.