sfcode
An Online Competing and Development Environment
outputJsonSync(file, object, [options])

Almost the same as `writeJsonSync`, except that if the directory does not exist, it's created.

Alias: outputJSONSync()

Example:

const fs = require('fs-extra')
const file = '/tmp/this/path/does/not/exist/file.json'
fs.outputJsonSync(file, {name: 'JP'})
const data = fs.readJsonSync(file)
console.log(data.name) // => JP