# angular-json-human **Repository Path**: hymaoa/angular-json-human ## Basic Information - **Project Name**: angular-json-human - **Description**: Angular Json Formatting for Human Beings (inspired by https://github.com/marianoguerra/json.human.js) - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-04-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README angular-json-human [](https://github.com/yaru22/angular-json-human) ================== Angular directive to convert JSON into human readable table. Inspired by https://github.com/marianoguerra/json.human.js. Demo ---- Check out the demo [here](http://plnkr.co/edit/0wEPmUsw5kKbBo9RjXW4?p=preview). Dependency ---------- This directive requires `lodash`. I'm going to remove the dependency in the future release. How to Use ---------- Install it via `bower`: ``` $ bower install angular-json-human ``` Include `angular-json-human.(js|css)` in your project. Load the directive after loading `angular.js` ``` ``` Specify angular-json-human as a dependency of your Angular module. ``` var app = angular.module('ngApp', [ 'yaru22.jsonHuman' ]); ``` Use it in your project. ``` ...
... ``` or check out my [Plunker](http://plnkr.co/edit/0wEPmUsw5kKbBo9RjXW4?p=preview) for the minimal setup. How to Contribute ----------------- ``` $ git clone https://github.com/yaru22/angular-json-human.git $ cd angular-json-human $ npm install; bower install $ # modify the source code in src/ $ grunt clean; grunt build $ # test your changes; you can modify demo/ and serve it locally to see the changes. $ # submit a pull request ``` TODO ---- - Remove the dependency on Lodash.