Skip to content

Instantly share code, notes, and snippets.

@jclem
Created March 19, 2014 21:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jclem/9651178 to your computer and use it in GitHub Desktop.
Save jclem/9651178 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