Function outputJson

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

    Parameters

    Returns Promise<void>

    Example

    import * as fs from 'fs-extra'

    const file = '/tmp/this/path/does/not/exist/file.json'

    // With a callback:
    fs.outputJson(file, {name: 'JP'}, err => {
    console.log(err) // => null

    fs.readJson(file, (err, data) => {
    if (err) return console.error(err)
    console.log(data.name) // => JP
    })
    })

    // With Promises:
    fs.outputJson(file, {name: 'JP'})
    .then(() => fs.readJson(file))
    .then(data => {
    console.log(data.name) // => JP
    })
    .catch(err => {
    console.error(err)
    })

    // With async/await:
    async function asyncAwait () {
    try {
    await fs.outputJson(file, {name: 'JP'})

    const data = await fs.readJson(file)

    console.log(data.name) // => JP
    } catch (err) {
    console.error(err)
    }
    }

    asyncAwait()
  • Parameters

    Returns void

  • Parameters

    Returns void

Generated using TypeDoc