An open API service indexing awesome lists of open source software.

https://github.com/gofynd/angular-json-viewer

Angular2+ JSON Viewer component. JSON in HTML with syntax highlight like Chrome DevTools.
https://github.com/gofynd/angular-json-viewer

angular json

Last synced: 6 months ago
JSON representation

Angular2+ JSON Viewer component. JSON in HTML with syntax highlight like Chrome DevTools.

Awesome Lists containing this project

README

          

# Angular Json viewer

Angular JSON Viewer component. JSON in HTML with syntax highlight like Chrome DevTools.

## Install

```
npm install @gofynd/angular-json-viewer --save
```

## Usage
import FyAngularJsonViewerModule to use in angular app.

```js
import { FyAngularJsonViewerModule } from '@gofynd/angular-json-viewer';

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

```html

```