0.0.7 • Published 8 years ago

@marvinh/proxystate v0.0.7

Weekly downloads
-
License
MIT
Repository
-
Last release
8 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

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago