0.0.2 • Published 5 years ago
pzfx-parser v0.0.2
pzfx-parser
Returns a JSON with data about project information and tables from PZFX files.
Note: This package does not return information about graphs, layouts or results parts of the file
Installation
$ npm i pzfx-parser
Usage
import { readFileSync } from 'fs';
import { pzfxParser } from 'pzfx-parser';
const buffer = readFileSync('pathToFile');
let parsed = pzfxParser(buffer);
console.log(parsed);