Skip to content

Instantly share code, notes, and snippets.

@SiestaDigital
Created January 6, 2020 00:44
Show Gist options
  • Select an option

  • Save SiestaDigital/fc4f1ceceb440dfad82199a4410e8453 to your computer and use it in GitHub Desktop.

Select an option

Save SiestaDigital/fc4f1ceceb440dfad82199a4410e8453 to your computer and use it in GitHub Desktop.
json
var fs = require('fs');
fs.readFile('data.json', function(err, json) {
if (err) throw err;
var data = JSON.parse(json);
// do stuff with data
data.foo = 'bar';
var newJson = JSON.stringify(data);
fs.writeFile('newData.json', newJson, function(err) {
if (err) throw err;
console.log('all done');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment