Convert Battlescribe roster files (.rosz) to Javascript. Written in Typescript and it supports it fully.
npm install rosz2js
or
yarn add rosz2js
The parser accepts either an absolute file path to a roster file or a buffer of a roster file.
import parser from 'rosz2js';
parser.parse('/absolute/path/to/battlescribe/rosterfile.rosz').then((output) => {
console.log(output); // Javascript representation of above roster file
});