Unison.js

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. Github.

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>
  );
}