JSON Viewer Tool with colorful styling

JSON Viewer Tool
try { const json = JSON.parse(jsonInput); const formatter = new JSONFormatter(json, 1, { theme: 'light' }); formattedJsonContainer.appendChild(formatter.render()); } catch (error) { formattedJsonContainer.innerHTML = `

Invalid JSON

`; } }

Comments

Popular posts from this blog