lol-json-parser
v0.9.0
Published
A parser for .json files from League of Legends.
Downloads
3
Maintainers
Readme
lol-json-parser
A parser for .json files from League of Legends.
Download
lol-json-parser is installable via:
Usage example
var JsonParser = require('lol-json-parser'),
json = new JsonParser();
json.read('KindredSR.json', function (err, data) {
console.log(data);
// {
// champion: "Kindred"
// customPanel: null
// customTag: ""
// map: "SR"
// mode: "CLASSIC"
// title: "KindredSR"
// type: "riot",
// blocks: [...]
// }
});
Available methods
N.B: All methods act as promises if no callback is passed.
parse(path, cb)
It will roughly parse a .json file from the given path.
Parameters
- path {string} A path to where the file to parse resides.
- [cb] {Function} A callback called with
(error, parsedData)
as arguments.
read(path, cb)
It will read a .json file from the given path, creating a data object.
Parameters
- path {string} A path to where the file to read resides.
- [cb] {Function} A callback called with
(error, readData)
as arguments.