hywer

0.0.28 • Public • Published

Logo

🥢 World Smallest, JSX based, Fine Grained Reactive UI Library.

Hywer is a World Smallest1kb, JSX based, Fine Grained Reactive UI Library. Hywer uses native browser apis like createElement, createTextNode and reactively update its content. In Hywer all you JSX components like <Component/> is a native HTMLElement objects. Hywer updates DOM granularly and asynchronously without slowing down your code.

At a glance

import { ref } from "hywer"

const App = () => {
  const count = ref(0)
  const doubleCount = count.derive(val => val * 2)

  return <>
    🧡 {doubleCount}
    <button onClick={() => count.val++}>👍</button>
    <button onClick={() => count.val--}>👎</button>
  </>
}

document.getElementById("app").append(...<App />)

Key Features

  • 1kb bundle size in brotli / gzip.
  • JSX support out of the box.
  • No virtual DOM.
  • Fine grained updates to real DOM.
  • Declarative UI programming with reactive states.
  • Quick to learn. No component lifecycles or other super complicated crap.
  • Don't pay for what you don't use. 0.7kb bundle size without reactive state
  • Debuggable. <div> is a real div in DOM. Use your browser dev tools to inspect rendering.
  • Rerender free mental model.
  • Static reactive dependencies for best performance and async execution.
  • UglifyJS / closure compiler ready code base.
  • Incredibly Small & Understandable code base.
  • Support of existing infrastructure tools like webpack babel vite swc bun, with little configuration.

Links

Why Hywer?

Performant

Carefully optimized for performance and bundle size. Hywer performance indistinguishable from vanilla js. Hywer provides very little layer of abstraction between your code and browser apis. Reactive value dependecies is static and execution is async without main thread blocking.

No Magic

Hywer behavior is predictable and simple to understand without any magic values or runtime dependency tracking.

Unopinionated

Hywer only does one thing and does it well. Hywer does not dictate to you the style of code, where you use it, whether to use jsx, or the build system. You can use Hywer with babel, swc, webpack or what you want. You can even use Hywer with another framework if you want. Hywer is just a lib that generates HTMLElement.

Anything

Hywer can be anything you want it to be, depending on your desires, Hywer is open to your suggestions and pull rеquestions. You are the one who can make Hywer better!

Browser support

Hywer support all mainline browser and any runtime with DOM api like Deno or Node.

More

At this point Hywer is in a very early stage of development so feel free to open an issue with your problems and suggestions.

Todo

  • [ ] write base docs
    • [ ] getting started
    • [ ] api doc
  • [ ] typescript support out of the box
    • [ ] write hywer.d.ts for all exported api
  • [ ] project templates
    • [x] vite template
    • [ ] swc template
    • [ ] webpack template
    • [ ] maybe other...
  • [ ] bundlers plugins
    • [ ] vite plugin
    • [ ] webpack plugin
    • [ ] esbuild plugin (maybe. idk)
  • [ ] website
  • [x] bundle size test
  • [ ] fine grained array change
    • for now arrays simply remove all old elements and insert new
  • [ ] write tests
    • i dont really understand how to write tests for dom content


made with ❤️ by ssleert

Readme

Keywords

none

Package Sidebar

Install

npm i hywer

Weekly Downloads

117

Version

0.0.28

License

none

Unpacked Size

30.5 kB

Total Files

15

Last publish

Collaborators

  • ssleert