JSON 可视化
/editor https://github.com/AykutSarac/jsoncrack.com
https://github.com/triggerdotdev/jsonhero-web
https://jsonhero.io/
function getJson() {
return "{}"
}
function handleSave() {
const a = document.createElement("a");
const file = new Blob([getJson()], { type: "text/plain" });
a.href = window.URL.createObjectURL(file);
a.download = "jsoncrack.json";
a.click();
}