Skip to content

Lazy-work/unison

This branch is 1 commit behind dev.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f9d9dd0 · Feb 1, 2025
Feb 1, 2025
Jan 24, 2025
Feb 1, 2025
Nov 28, 2024
Jan 4, 2025
Nov 28, 2024
Aug 22, 2024
May 25, 2024
Jan 8, 2025
Jan 8, 2025
Jun 24, 2024
Jan 16, 2025
Jan 24, 2025
Jan 20, 2025
Nov 28, 2024
Jan 3, 2025
Jan 3, 2025
Jan 25, 2025

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