Skip to content

Lazy-work/unison

Repository files navigation

GitHub license

Unison.js is a framework that facilitates seamless deep signal integration within React while maintaining compatibility with other popular frameworks like Vue and Solid.

Full documentation.

Why this library ?

Please read the explanation at : Why ?

Example (Vue API)

import { ref } from "@unisonjs/vue";

function Counter() {
  const count = ref(0);

  setInterval(() => count.value++, 1000);

  return (
    <div>
      <p>Count: {count.value}</p>
    </div>
  );
}

This is an example of a counter that increments every second.

Contributing

Currently, pull request are not accepted but you can fill a issue to report a bug or request a feature.

License

MIT

Copyright (c) 2024, William (Abdullah) NGBAMA

Credits

The Unison.js project is powered by: React created by Facebook and Vue created by Evan You