Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 932 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 932 Bytes

Rosz2JS

Build Status codecov npm version

rosz2js

Convert Battlescribe roster files (.rosz) to Javascript. Written in Typescript and it supports it fully.

Installation

npm install rosz2js

or

yarn add rosz2js

Usage

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
});