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

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

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
}
```