Skip to content

theManAndHisShadow/json2html

Repository files navigation

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);