Angular JSON viewer

GitHub license npm scope

An interactive JSON view component for Angular.

Quick links

Installing

Example :
npm install --save nxt-json-view

Import JSON view module

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

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

Prepare JSON data

Example :
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

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

results matching ""

    No results matching ""