17.0.1 • Published 5 months ago

nxt-json-view v17.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Angular JSON viewer

GitHub license npm scope

An interactive JSON view component for Angular.

Quick links

Installing

npm install --save nxt-json-view

Import JSON view module

import { JsonViewModule } from 'nxt-json-view'

@NgModule({
    ...
    imports: [
        ...
        JsonViewModule
    ]
})

Prepare JSON data

data = {
    "name": "nxt-json-view",
    "url": "https://github.com/Liquid-JS/nxt-components/tree/master/packages/json-view",
    "string": "github",
    "number": 88,
    "boolean": true,
    "object": {
        "obj1": "obj1",
        "obj2": "obj2",
        "object": {
            "obj11": "obj11",
            "obj22": "obj22"
        },
        "emptyArray": []
    },
    "array": [
        1,
        2,
        3
    ],
    "date": new Date(),
    "null": null
}

Use it in a template

<nxt-json-view [data]="data"></nxt-json-view>