A tool for parsing Blizzard Battle.net product.db
file.
With yarn:
yarn add blizzard-product-parser
Or using npm:
npm install blizzard-product-parser
import Parser from 'blizzard-product-parser'
const parser = new Parser()
Parser()
will constructed with the default product.db
path of your system ( Windows or macOS only ).
If you want to set the path manually, you can either get it done by:
const parser = new Parser('/your/path/to/product.db')
Or
const parser = new Parser()
parser.setPath('/your/path/to/product.db')
If you don't set the path and your system is not Windows or macOS, an error will be throwed since the path will be null
.
Simply call parser.decode()
and it will be done.
An error will be throwed if product.db
does not exist at your path.
Following functions needs you to decode()
first, or it will throw an error.
parser.getProducts()
will return the uid of all install products in array.
parser.getInstallPath(uid)
If uid is invalid or not installed, this will return false
.
parser.getRaw()
will return an object with all the parsed raw data.
yarn
yarn build
Protobuf description file was originally from overtools/TACTLib