Package Exports
- ngx-json-viewer-scrolling
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ngx-json-viewer-scrolling) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ngx-json-viewer-scrolling
JSON formatter and viewer for Angular 2/4/5/6+
Live demo: https://stackblitz.com/edit/ngx-json-viewer-scrolling
Install
# For Angular 4/5/6:
npm install ngx-json-viewer-scrolling
# For Angular 2:
npm install ngx-json-viewer-scrolling@1
NPM Package: https://www.npmjs.com/package/ngx-json-viewer-scrolling
Usage
In your app.module.ts
import NgxJsonViewerModule
like
import { NgxJsonViewerModule } from 'ngx-json-viewer';
@NgModule({
...,
imports: [
...,
NgxJsonViewerModule,
...
],
...
})
export class AppModule { }
In your component:
<ngx-json-viewer [json]="someObject"></ngx-json-viewer>
To collapse all nodes at first:
<ngx-json-viewer [json]="someObject" [expanded]="false"></ngx-json-viewer>