# reactive-signals-by-roman

> My implementation of signals. Something like Vue and Solid.

Latest version **1.1.0** (published 2023-07-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install reactive-signals-by-roman
pnpm add reactive-signals-by-roman
yarn add reactive-signals-by-roman
bun add reactive-signals-by-roman
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2023-07-29 |
| First published | 2023-07-26 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 16.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Roman Developer |
| Maintainers | roman_developer_git |

## Links

- npm: https://www.npmjs.com/package/reactive-signals-by-roman
- Repository: https://github.com/RomanDeveloperGit/reactive-signals
- Homepage: https://github.com/RomanDeveloperGit/reactive-signals#readme
- Issues: https://github.com/RomanDeveloperGit/reactive-signals/issues
- npm.io page: https://npm.io/package/reactive-signals-by-roman

## Recent versions

- 1.1.0 (latest) — 2023-07-29
- 1.0.3 — 2023-07-26
- 1.0.2 — 2023-07-26
- 1.0.1 — 2023-07-26
- 1.0.0 — 2023-07-26

## README

# reactive-signals
My implementation of signals. Something like Vue and Solid.

## Functional:
    type Effect = () => void;
    type Signal<T> = {
        value: T;
    };

    const createSignal: <T>(initialValue: T) => Signal<T>;

    const batch: (changes: Effect) => void;

    const createEffect: (callback: Effect) => void;

---
_Source: https://npm.io/package/reactive-signals-by-roman · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
