2.0.0-beta.8 • Published 5 months ago

@hyperactive/hyper v2.0.0-beta.8

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

hyperactive

Hyperactive is a suite of tools to build smart webapps. As of 1.0, only server-side render is supported. Client-side render with renderDOM works, but more work is ongoing on the reactive part.

Usage example

// if using Deno
import { elements, renderHTML } from "https://deno.land/x/hyperactive/mod.ts";

// if using Node
import { elements, renderHTML } from "@hyperactive/hyper";

const { div, p, h1 } = elements;

assertEquals(
  renderHTML(
    div(
      { id: "hello", class: "world" },
      p(h1({ class: "hello" }, "hello world", br())),
    ),
  ),
  `<div id="hello" class="world"><p><h1 class="hello">hello world<br /></h1></p></div>`,
);

User testimonials

@TRWII

2.0.0-beta.8

5 months ago

2.0.0-beta.7

5 months ago

2.0.0-beta.2

7 months ago

2.0.0-beta.1

7 months ago

2.0.0-beta.6

6 months ago

2.0.0-beta.5

6 months ago

2.0.0-beta.4

6 months ago

2.0.0-beta.3

7 months ago

2.0.0-alpha.14

3 years ago

2.0.0-alpha.6

4 years ago

2.0.0-alpha.8

4 years ago

2.0.0-alpha.5

4 years ago

2.0.0-alpha.4

4 years ago