Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sealmove/binarylang

Binary parser/encoder DSL
https://github.com/sealmove/binarylang

Last synced: about 2 months ago
JSON representation

Binary parser/encoder DSL

Awesome Lists containing this project

README

        

# BinaryLang
BinaryLang is an extensible Nim DSL for creating binary parsers/encoders in a
symmetric fashion.

It supports syntax for creating simple common parsers (ints, floats, strings),
as well as ways for synthesizing more complex parsers out of simpler ones.
Therefore, it is similar to a parser combinator framework.

Moreover, you can mix DSL-generated parsers with custom ones and extend the DSL
using nim templates.

## Documentation
- [User Manual](https://sealmove.github.io/binarylang/)
- [Developer Manual](https://sealmove.github.io/binarylang/devmanual.html)
- [Changelog](https://sealmove.github.io/binarylang/changelog.html)
- [Test Results](https://sealmove.github.io/binarylang/testresults.html)
- Tutorials, write-ups, articles
- [Ajusa on HTTP](https://ajusa.github.io/binarylang-fun/intro.html)
- [Ajusa on Web Scraping](https://ajusa.github.io/binarylang-fun/scraping.html)