Illia Kozyr c722a49f64 React Project DONE | 2 년 전 | |
---|---|---|
.. | ||
index.js | 2 년 전 | |
license | 2 년 전 | |
package.json | 2 년 전 | |
readme.md | 2 년 전 |
Read and parse a JSON file
Strips UTF-8 BOM, uses graceful-fs
, and throws more helpful JSON errors.
$ npm install --save load-json-file
const loadJsonFile = require('load-json-file');
loadJsonFile('foo.json').then(json => {
console.log(json);
//=> {foo: true}
});
Returns a promise that resolves to the parsed JSON.
Returns the parsed JSON.
MIT © Sindre Sorhus