@d-exclaimation/seraph
TypeScript icon, indicating that this package has built-in type declarations

0.1.0-beta.5 • Public • Published

Seraph

Build Status

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.

Package Sidebar

Install

npm i @d-exclaimation/seraph

Weekly Downloads

97

Version

0.1.0-beta.5

License

MIT

Unpacked Size

97.1 kB

Total Files

44

Last publish

Collaborators

  • dexclaimation