@d-exclaimation/seraph
v0.1.0-beta.5
Published
Hassle-free web app, in an instant
Downloads
5
Maintainers
Readme
Hassle-free web apps, in an instant.
- No build steps, no dependencies, no configuration necessary
- Built on top of web standards, can be used with plain HTML, CSS, and JS
- Focussed on minimal abstraction and runtime overhead
- Supports full interactivity with capabilities selective hydration
- Uses familiar syntax and conventions, with a focus on developer experience
- Small bundle size, less than 5kb gzipped
Getting started
Install
npm install @d-exclaimation/seraph
# or
pnpm add @d-exclaimation/seraph
# or
yarn add @d-exclaimation/seraph
Use a CDN
<script type="module">
import { html, component } from "https://cdn.skypack.dev/@d-exclaimation/seraph";
const App = component(() =>
html.div({
c: "Hello World!",
})
);
App.render({}, document.getElementById("app"));
</script>
Resources
Feedback
If you have any feedback, feel free open an issue.