Rison Object Encoding Service for AngularJS
npm install angular-risonForked to publish to npm
Ported and extended from the original spec: http://mjtemplate.org/examples/rison.html
Example:
```
{
"a":0,
"b":"foo",
"c":"23skidoo"
}
Becomes the following, URI safe string:
``
(a:0,b:foo,c:'23skidoo')
``
npm install angular-rison
Install global dependencies:
``
$ npm install -g grunt-cli
Install local dependencies:
``
$ npm install
Launch the development and testing environment:
``
$ grunt
On changes, the environment automatically performs linting, runs unit tests, creates documentation, creates a code coverage report, and creates a code complexity report for your convenience.
To view documentation materials, navigate to:
`http://127.0.0.1:9001/`
To view testing coverage reports via Istanbul, navigate to:
`http://127.0.0.1:9001/coverage`
To view code complexity reports via Plato, navigate to:
`http://127.0.0.1:9001/plato`
Finally, to ensure package-ability, ensure that you can compile the project without errors:
```
$ grunt build