All Projects → overtrue → json-viewer

overtrue / json-viewer

Licence: MIT License
A tool for make JSON view in browser.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to json-viewer

flutter json view
📄 Displaying json models in a Flutter widget
Stars: ✭ 28 (-39.13%)
Mutual labels:  json-viewer
json-viewer
Pretty JSON viewer for the terminal
Stars: ✭ 26 (-43.48%)
Mutual labels:  json-viewer
reky
Reky is an opensource API development platform. It automatically visualizes API response with outstanding graphs & tables.
Stars: ✭ 22 (-52.17%)
Mutual labels:  json-viewer
JSONViewer
Chrome Extension, Format several JSON documents in one window, depends to your screen width, up to 6.
Stars: ✭ 49 (+6.52%)
Mutual labels:  json-viewer
Json Viewer
It is a Chrome extension for printing JSON and JSONP.
Stars: ✭ 2,585 (+5519.57%)
Mutual labels:  json-viewer
React Json View
JSON viewer for react
Stars: ✭ 2,356 (+5021.74%)
Mutual labels:  json-viewer

Json Viewer

A tool for make JSON view in browser.

Usage

<link rel="stylesheet" href="json-viewer/json-viewer.css">
<script src="path/to/jquery.js"></script>
<script src="json-viewer/json-viewer.js"></script>

<div id="json-container"></div>

<script>
    var json = {
        name: "JsonViewer",
        author: {
          name: "overtrue",
          email: "[email protected]",
          contact: [
            {
              location: "office",
              number: 123456
            },
            {
              location: "home",
              number: 987654
            }
          ]
        }
    };

    $('#json-container').jsonview(json); // Support json string/object
</script>

Demo

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].