https://github.com/tleunen/react-json-viewer
A JSON viewer built with React.js
https://github.com/tleunen/react-json-viewer
Last synced: about 1 year ago
JSON representation
A JSON viewer built with React.js
- Host: GitHub
- URL: https://github.com/tleunen/react-json-viewer
- Owner: tleunen
- Created: 2014-10-13T15:49:10.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-13T15:52:25.000Z (over 11 years ago)
- Last Synced: 2025-02-13T15:31:22.894Z (over 1 year ago)
- Language: JavaScript
- Size: 457 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-json-viewer
Small project to understand how [react](https://github.com/facebook/react) works.
This allow you to visualize any JSON by dropping the file inside the window.
```json
{
"aString": "This is a string value",
"aBoolTrue": true,
"anotherBoolFalse": false,
"anArray": ["first Element", "second Element", "third Element"],
"aNullObject": null,
"anObject": {
"innerValueStr": "Wowwww!",
"price": 19.99,
"content": {
"table": ["this", "that", "Oh!", "Awesome!"],
"available": false,
"anotherObject": {
"yat": "Yay!"
}
}
},
"aNumber": 5,
"aFloat": 2.454
}
```