Created
January 6, 2020 00:44
-
-
Save SiestaDigital/fc4f1ceceb440dfad82199a4410e8453 to your computer and use it in GitHub Desktop.
json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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