Skip to content

Contargo/flyps

Repository files navigation

npm build coverage

Flyps

Flyps is a light-weight library with powerful tools, which help developers build modular applications that are composable, functional reactive and pure.

Getting started

You can install flyps via npm:

npm i flyps

Create a signal

Signals are the core principle of flyps and are used everywhere.

import { signal } from "flyps";

const counter = signal(1);

Change the value of a signal