pb-parser
v0.1.6
Published
a simple protobuf parser written in typescript.
Downloads
3
Maintainers
Readme
pb-parser
a simple protobuf parser written in typescript.
Installation
npm install pb-parser
Usage
import { parse } from "pb-parser";
const file = parse(`syntax = "proto3";`);
console.log(file);
Testing
To run the tests, run the following command:
npm test