Flyps is a light-weight library with powerful tools, which help developers build modular applications that are composable, functional reactive and pure.
You can install flyps via npm:
npm i flyps
Signals
are the core principle of flyps and are used everywhere.
import { signal } from "flyps";
const counter = signal(1);