0.0.7 • Published 7 years ago

@marvinh/proxystate v0.0.7

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

proxystate

A tiny reactive library similar to MobX, but based on proxies. It uses google chrome's polyfill under the hood.

# npm
npm install @marvinh/proxystate

# yarn
yarn add @marvinh/proxystate

Usage

import { observable, observer } from "@marvinh/proxystate";

const obj = observable({ foo: "bar" });

observe(() => console.log(obj.foo));

obj.foo = 2;
// logs: 2

License

MIT, see License file.

0.0.7

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago