Olivier Wietrich

Results 35 issues of Olivier Wietrich

In the same way we can proxy setters and getters we should be able to proxy the construction of a store.

enhancement

``` js var store = new Store({ title: 'hello', items: ['hello', 'world'] }) var items = store.select('items'); items.set(0, 'foo'); ``` `select` return a datastore from a key.

enhancement
todo

The diff should be in a separate module

enhancement

``` var other = new Store(); store.reset(other); ```

enhancement
todo

Is there a way to optimize it?

question

Could we optimize the obj clone?

question

enhancement
todo

I added an event 'updated' which is trigerred on set, del and reset. You can choose to trigger or not this event by setting the strict mode to true: ```...

question

A plugin to set/get and sync in redis.

todo