# watchly

> very simple object watcher using very simple events (evently)

Latest version **0.2.0** (published 2013-11-22) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2013-11-22 |
| First published | 2013-11-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | david tudury |
| Maintainers | dtudury |
| Keywords | object, change, event, watch |

## Links

- npm: https://www.npmjs.com/package/watchly
- Repository: https://github.com/dtudury/watchly
- Issues: https://github.com/dtudury/watchly/issues
- npm.io page: https://npm.io/package/watchly

## Dependencies (1)

- [evently](https://npm.io/package/evently.md) ~2.1.2

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 0.2.0 (latest) — 2013-11-22
- 0.1.1 — 2013-11-21
- 0.1.0 — 2013-11-21

## README

#watchly

very simple object watcher using very simple events ([evently](https://github.com/dtudury/evently/))

## Installation

    $ npm install watchly

## Usage

```js
var watchly = require('../index');

var w = new watchly.Watcher();
console.log(w.prototype);

function log(a) {
    console.log("triggered with " + a);
}

w.on(1, log);
w.set(1, 5);
console.log("w[1] has value:", w.get(1));
```

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