Binary-parser is a parser builder for JavaScript that enables you to write efficient binary parsers in a simple and declarative manner. It supports all common data types required to analyze a structured binary data. Binary-parser dynamically generates and compiles the parser code on-the-fly, which runs as fast as a hand-written parser (which takes much more time and effort to write). Supported dat

