tree: 38a22ffd2eb61023e9cfceea419c2201b7233dcb [path history] [tgz]
  1. index.js
  2. license
  3. package.json
  4. readme.md
node_modules/load-json-file/readme.md

load-json-file Build Status

Read and parse a JSON file

Strips UTF-8 BOM, uses graceful-fs, and throws more helpful JSON errors.

Install

$ npm install --save load-json-file

Usage

const loadJsonFile = require('load-json-file');

loadJsonFile('foo.json').then(json => {
	console.log(json);
	//=> {foo: true}
});

API

loadJsonFile(filepath)

Returns a promise for the parsed JSON.

loadJsonFile.sync(filepath)

Returns the parsed JSON.

Related

License

MIT © Sindre Sorhus