-
读取JSON5文件的全部内容的功能由utils-fs-read-json5提供
资源介绍
读取JSON5
读取文件的全部内容。
安装
$ npm install utils-fs-read-json5
用法
var read = require ( 'utils-fs-read-json5' ) ;
read(path,[options,] clbk)
读取文件的全部内容。
read ( '/path/to/data.json5' , onData ) ;
function onData ( error , data ) {
if ( error ) {
console . error ( error ) ;
} else {
console . log ( data ) ;
}
}
该function接受与相同的选项,但encoding始终设置为utf8 。 另外,可以提供 。
var opts = {
'reviver' : reviver
} ;