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