Function outputJsonSync

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

    Parameters

    Returns void

    Example

    import * as fs from '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

Generated using TypeDoc