Skip to content

Instantly share code, notes, and snippets.

@Arieg419
Last active November 28, 2017 20:12
Show Gist options
  • Save Arieg419/39a3c6da74aee82774a37de826f79606 to your computer and use it in GitHub Desktop.
Save Arieg419/39a3c6da74aee82774a37de826f79606 to your computer and use it in GitHub Desktop.
const jsonfile = require('jsonfile')
const file = '/tmp/data.json'
const obj = {name: 'JP'}
const errorLoggerFunction = (err) => console.error(err);
jsonfile.writeFile(file, obj, errorLoggerFunction)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment