rijs.data

[![Coverage Status](https://coveralls.io/repos/rijs/data/badge.svg?branch=master&service=github)](https://coveralls.io/github/rijs/data?branch=master) [![Build Status](https://travis-ci.org/rijs/data.svg)](https://travis-ci.org/rijs/data)

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
rijs.data
002.2.45 years ago8 years agoMinified + gzip package size for rijs.data in KB

Readme

Ripple | Data
Coverage Status Build Status Extends core to register objects and arrays. It also enables per-resource change listeners on those resources, as well versioning info. ```js ripple('data', ) ``` All data resources will be emitterified: ```js // instead of: ripple.on('change', function(name, change){ .. }) ripple('name').on('change', function(change){ .. }) ripple('name').once('change', function(change){ .. }) ripple('name').emit('change') ``` All data resources will be initialised with versioning info: ```js ripple('name').log ```