📜  在 nodejs 中编辑 json 文件 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:58.794000             🧑  作者: Mango

代码示例4
//inistall ciql-json : npm i ciql-json

const ciqlJson = require("ciql-json")

ciqlJson
    .open("file.json")
    .set("address", {town : "", city : ""})
    .save()