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

Version Path
govuk_publishing_components-16.21.0 node_modules/fs-extra/docs/outputJson-sync.md
govuk_publishing_components-16.20.1 node_modules/fs-extra/docs/outputJson-sync.md
govuk_publishing_components-16.20.0 node_modules/fs-extra/docs/outputJson-sync.md
govuk_publishing_components-16.19.0 node_modules/fs-extra/docs/outputJson-sync.md
govuk_publishing_components-16.18.0 node_modules/fs-extra/docs/outputJson-sync.md
govuk_publishing_components-16.17.0 node_modules/fs-extra/docs/outputJson-sync.md