Angular component for objects debug (Collapsible JSON in HTML like in Chrome DevTools)
npm install t-json-viewer#
t-json-viewer v1.2.0Angular 2 component for objects debug. Collapsible JSON in HTML with syntax highlight like Chrome DevTools http://temich.in.ua/t-json-viewer/
```
npm install t-json-viewer --save
NPM Package: https://www.npmjs.com/package/t-json-viewer
Import TJsonViewerModule to have access to following component
`js
import {TJsonViewerModule} from 't-json-viewer';
@NgModule({
...,
imports: [
...,
TJsonViewerModule,
...
],
...
})
export class AppModule { }
`
Takes an input [json] that can be data bound to any object.
`js
@Component({
...,
template:
``
})
export class MyComponent {
...
ngOnInit() {
this.asset = {};
...
}
...
}