@reginbald/t-json-viewer

1.2.1 • Public • Published

FORK OF https://www.npmjs.com/package/t-json-viewer

Angular 2 JSON Viewer Component t-json-viewer v1.2.0

Angular 2 component for objects debug. Collapsible JSON in HTML with syntax highlight like Chrome DevTools http://temich.in.ua/t-json-viewer/

Install

npm install t-json-viewer --save

NPM Package: https://www.npmjs.com/package/t-json-viewer

Usage

Import TJsonViewerModule to have access to following component

import {TJsonViewerModule} from 't-json-viewer';

@NgModule({
    ...,
    imports: [
        ...,
        TJsonViewerModule,
        ...
    ],
    ...
})
export class AppModule { }

Component

Takes an input [json] that can be data bound to any object.

@Component({
  ...,
  template: `
    <t-json-viewer [json]="asset"></t-json-viewer>
  `
  })
  export class MyComponent {
    ...
    ngOnInit() {
      this.asset = {};
      ...
    }
    ...
  }

Examples

Examples collapse pretty JSON with syntax highlight

Outputs

Angular 2 Pretty JSON with syntax highlight

Readme

Keywords

Package Sidebar

Install

npm i @reginbald/t-json-viewer

Weekly Downloads

1

Version

1.2.1

License

BSD 3-clause

Last publish

Collaborators

  • reginbald