Read and write JSON files
This package contains functions to read and write JSON to and from files.
npm install @b127/json
import { readJson, writeJson } from '@b127/json';
(async () => {
// read JSON from file
const data = await readJson('./package.json');
// write JSON to file
await writeJson('./file.json', { hello: 'world' });
})();
Open (JSON) file and parse data. Returns a Promise
with the parsed data.
Type: string
File to read JSON from.
Write data as JSON to a file. Returns Promise<void>
.
Type: string
File to write data to.
Type: any
Data to write as JSON.