json-reader-writer

1.0.4 • Public • Published

Table of Contents

Read or write to a JSON file synchronously


Table of Contents

Table of Contents
  • Install
  • Usage
  • API
  • Contribute
  • License
  • Install

    $ npm install --save json-reader-writer
    $ yarn add json-reader-writer

    Usage

    const {readJSON, writeJson} = require('json-reader-writer')
    const filePath = 'foo.json'
    const obj = {
      foo: 1,
      bar: 2,
      baz: 2
    }
     
    console.log(writeJson(filePath, obj)) // true if successful
    console.log(readJSON(filePath)) // { foo: 1, bar: 2, baz: 2 }
     

    API

    readJSON(filename)

    Takes the filename of the JSON file you want to read from as argument. Defaults to file.json if no filename provided.

    writeJSON(filename, objectToWrite)

    Takes the filename of the JSON file you want to write to and the valid object you want to write as arguments.

    Contribute

    Contributions are welcome. Please open up an issue or create PR if you would like to help out.

    Note: If editing the README, please conform to the standard-readme specification.

    License

    Licensed under the MIT License.

    Package Sidebar

    Install

    npm i json-reader-writer

    Weekly Downloads

    6

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    6.87 kB

    Total Files

    9

    Last publish

    Collaborators

    • tiaanduplessis