├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── decoder.js ├── encoder.js ├── example.js ├── example.proto ├── index.js ├── package.json └── test ├── decode.js ├── encode.js └── test.proto /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/README.md -------------------------------------------------------------------------------- /decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/decoder.js -------------------------------------------------------------------------------- /encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/encoder.js -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/example.js -------------------------------------------------------------------------------- /example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/example.proto -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/package.json -------------------------------------------------------------------------------- /test/decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/test/decode.js -------------------------------------------------------------------------------- /test/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/test/encode.js -------------------------------------------------------------------------------- /test/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/pbs/HEAD/test/test.proto --------------------------------------------------------------------------------