Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 250 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 250 Bytes

About

JSON formatter written in TypeScript.

Basic usage

const formattedJSON = json2html({
        json: jsonString, // some json data
      });

// now formattedJSON is ready for any DOM manipulatios
infoBox.appendChild(formattedJSON);