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.
- Host: GitHub
- URL: https://github.com/gofynd/angular-json-viewer
- Owner: gofynd
- Created: 2017-05-10T10:16:00.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-19T08:17:48.000Z (almost 9 years ago)
- Last Synced: 2024-04-26T20:37:18.320Z (almost 2 years ago)
- Topics: angular, json
- Language: TypeScript
- Homepage:
- Size: 12.7 KB
- Stars: 4
- Watchers: 37
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```