How can I edit a config.json file? I tried
const config = require("./config.json");
config.set("status", "online");
but it doesn't work.
How can I edit a config.json file? I tried
const config = require("./config.json");
config.set("status", "online");
but it doesn't work.
You need to read in the file with something like fs.readFile
then modify the content of the file and write back to it with fs.writeFile
.