I'm returning a javascript object and I'm trying to append it to a json file using fs.appendFile
. When I test the output of the file at, json formatter website, I get the error Multiple JSON root elements
. Can someone please show me what I'm doing wrong here.
var data = {
userProfile: {
name: "Eric"
},
purchases: [
{
title: "book name"
},
{
title: "book name two"
}
]
};
fs.appendFile("data.json", JSON.stringify(data, null, 2), function(err) {
if (err) {
console.log("There was an error writing the backup json file.", err);
}
console.log("The backup json file has been written.");
});