Estou escrevendo um arquivo JSON usando o NodeJS, assim:
var path = "D:\test.json"
var writeContent = {"Success" : "This is a sample"}
fs.writeFile(path, JSON.stringify(writeContent, null, 4), function (error) {
if (error === null) {...
24.08.2015 / 19:12