# signaloits

> Tiny fine-grained reactive signals for TypeScript.

Latest version **1.0.1** (published 2026-09-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install signaloits
pnpm add signaloits
yarn add signaloits
bun add signaloits
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2026-09-23 |
| First published | 2026-08-26 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 11.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | gribbet |

## Links

- npm: https://www.npmjs.com/package/signaloits
- Repository: https://github.com/gribbet/signaloits
- Homepage: https://github.com/gribbet/signaloits#readme
- Issues: https://github.com/gribbet/signaloits/issues
- npm.io page: https://npm.io/package/signaloits

## Recent versions

- 1.0.1 (latest) — 2026-09-23
- 1.0.0 — 2026-08-26

## README

# signlets

Tiny fine-grained reactive signals for TypeScript.

## Install

```bash
npm i signlets
```

## Usage

```ts
import { signal, effect } from "signlets";

const [count, setCount] = signal(0);
effect(() => console.log(count()));
setCount(1);
```

## API

`signal`, `effect`, `onCleanup`, `untrack`, `derived`, `$`, `root`, `resolve`, `map`

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