vivocha/ng-prettyjson

Name: ng-prettyjson

Owner: Vivocha

Description: AngularJS directive for pretty json display

Forked from: darul75/ng-prettyjson

Created: 2016-06-16 14:18:41.0

Updated: 2017-05-22 10:30:43.0

Pushed: 2017-05-22 10:51:41.0

Homepage: http://darul75.github.io/ng-prettyjson/

Size: 1230

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

ng-prettyjson NPM version Build Status CDNJS

Angular directive for JSON pretty display output, indent and colorized.

Idea was given by the need to display some configuration JSON format files in a back office.

Inspired by this from stackoverflow pretty json javascript

Edition is now available with awesome Ace editor: ace editor

Demo

http://darul75.github.io/ng-prettyjson/

Screenshot

pretty json screenshot

Installation

Using Bower:

r install ng-prettyjson
How to use it

You should already have script required for Angular

ipt type="text/javascript" src="angular.min.js"></script>

to the list above, you should add:

k rel="stylesheet" type="text/css" href="ng-prettyjson.min.css">
tml
ipt type="text/javascript" src="ng-prettyjson.min.js"></script>

Then, require ngPrettyJson in your application module:

lar.module('myApp', ['ngPrettyJson']);

and then just add a pre with pretty-json directive:

 READ-ONLY -->
 pretty-json="jsonObj"  />

 EDITION -->
 pretty-json="jsonObj" edition="true" on-edit="doWith(newJson)" />
pe.jsonObj = {a:1, 'b':'foo', c:[false,null, {d:{e:1.3e5}}]};

By default whether no edition callback has been set, an event is fired from directive. Here is how to catch it:

pe.$on('json-updated', function(msg, value) {


Tag Usage

Alternatively, you can use a <pretty-json> tag. This tag will be replaced with a <pre>:

tty-json json="jsonObj"></pretty-json>
RELEASE
Build

You can run the tests by running

install

and

test

assuming you already have grunt installed, otherwise you also need to do:

install -g grunt-cli
Metrics

NPM

License

The MIT License (MIT)

Copyright (c) 2013 Julien Valéry

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.