Skip to content

Commit 6d4f488

Browse files
committed
codecov badge
1 parent d5831d2 commit 6d4f488

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# rawproto
22

3+
[![codecov](https://codecov.io/gh/konsumer/rawproto/graph/badge.svg?token=PBL1G8S4WY)](https://codecov.io/gh/konsumer/rawproto)
4+
35
Guess structure of protobuf binary from raw data, query binary protobuf without the schema, and output guessed JSON or schema, some CLI utils, and a web tool for exploring raw protobuf.
46

57
## installation
@@ -10,7 +12,6 @@ You can also use `npx rawproto` to run the CLI.
1012

1113
If you just want the CLI, and don't use node, you can also find standalone builds [here](https://github.com/konsumer/rawproto/releases).
1214

13-
1415
## usage
1516

1617
```js
@@ -29,7 +30,7 @@ console.log(proto.query('1.2.4.10.5'))
2930
// guess to decode as JS object
3031
console.log(proto.toJS())
3132

32-
// guess to generate .proto file string
33+
// guess to generate .proto file string
3334
console.log(proto.toProto())
3435

3536
// walk over messages recursively, calling your callback.
@@ -54,5 +55,4 @@ FIXED32 - int, uint, bool, float
5455

5556
You can also use `raw` for any type to get the raw field with bytes + meta.
5657

57-
Groups are treated as repeated `LEN` message-fields.
58-
58+
Groups are treated as repeated `LEN` message-fields.

0 commit comments

Comments
 (0)