Protobuf text format to JSON parser.
npm install pb-text-format-to-jsonProtobuf Text Format to JSON parser.
For example, parses Google font's METADATA.pb to JSON.
``js
import { parse } from "pb-text-format-to-json";
import fs from "fs";
const input = fs.readFileSync("path/to/pb", "utf-8");
const output = parse(input);
``
Derived from protobuf-textformat.