Sha256: c44f74a1deb4d9b27ac688869c12d422e9fe3c8a7cf2d3280944e08714cc8289
Contents?: true
Size: 617 Bytes
Versions: 46
Compression:
Stored size: 617 Bytes
Contents
# outputJsonSync(file, object, [options]) Almost the same as [`writeJsonSync`](writeJson-sync.md), except that if the directory does not exist, it's created. `options` are what you'd pass to [`jsonFile.writeFileSync()`](https://github.com/jprichardson/node-jsonfile#writefilesyncfilename-obj-options). **Alias:** `outputJSONSync()` - `file` `<String>` - `object` `<Object>` - `options` `<Object>` ## Example: ```js 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 ```
Version data entries
46 entries across 46 versions & 2 rubygems