const fs = require('fs'); fs.readFile('data.json', 'utf8', (err, data) => { if (err) throw err; const jsonData = JSON.parse(data); displayJsonData(jsonData); }); function displayJsonData() { const jsonDisplay = document.getElementById('json-display'); let displayContent = ''; for (const key in jsonData) { displayContent += `

${key}:


'; } jsonDisplay.innerHTML = `
${displayContent}
En_GPT @En_GPT SigGravitas @SigGravitas
`; }