@rhjs/core
TypeScript icon, indicating that this package has built-in type declarations

0.3.17 • Public • Published

🧩 rh.js

language

🧩 lightweight & powerful framework

FEATURES:

  • Packed main.js only <~ 13kb (gzip)
  • Not extras syntax, all in js.
  • Less virtual dom, always real dom.
  • Hooks without any restrictions.
  • Extremely high performance, most renders do not require diff.
  • Develop applications in any style, react vue solid even elm style.
  • Ubiquitous responsiveness, even across clients and across endpoints (WIP)

Packages

Package Version Size Description
@rhjs/core Core Version size core code.
@rhjs/hooks Tag Version size hooks, such as createEffect createState ...
@rhjs/builtin Builtin Version size builtin function, such like For / lazy / Portal.
@rhjs/tag Tag Version size Some convenient-to-use template string tools, such like html / raw / text.
@rhjs/hyper Tag Version size Building components functionally.
@rhjs/atomic-css version size tailwindcss runtime.
@rhjs/query 🚧 🚧 Porting react-query.

Table of Contents

Quick Start

<script type="importmap">
{
  "imports": {
    "@rhjs/core": "https://unpkg.com/@rhjs/core@latest/dist/main.module.mjs",
    "@rhjs/hooks": "https://unpkg.com/@rhjs/hooks@latest/dist/main.module.mjs",
    "@rhjs/builtin": "https://unpkg.com/@rhjs/builtin@latest/dist/main.module.mjs",
    "@rhjs/tag": "https://unpkg.com/@rhjs/tag@latest/dist/main.module.mjs"
  }
}
</script>
<div id="app"></div>
<script type="module">
  import { mount } from "@rhjs/core";
  import { createState } from "@rhjs/hooks";
  import { html } from "@rhjs/tag";

  const [count, setCount] = createState(0);

  mount(
    "#app",
    html`
      <h1>Hello world, @rhjs 🎉</h1>
      <button class="button-85" onclick=${() => setCount((c) => c + 1)}>
        count: ${count}
      </button>
    `
  );
</script>

online in codesandbox

TRY IT

Maintainers

@zhzluke96

Contributing

Feel free to dive in! Open an issue or submit PRs.

LICENSE

Code is licensed under the Apache License 2.0.

Package Sidebar

Install

npm i @rhjs/core

Weekly Downloads

8

Version

0.3.17

License

Apache-2.0

Unpacked Size

1 MB

Total Files

13

Last publish

Collaborators

  • luke_zhang