https://github.com/oppodelldog/sbmf
https://github.com/oppodelldog/sbmf
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oppodelldog/sbmf
- Owner: Oppodelldog
- Created: 2022-11-20T20:39:50.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-22T16:44:53.000Z (almost 2 years ago)
- Last Synced: 2025-01-02T19:52:47.520Z (9 months ago)
- Language: Go
- Size: 1.69 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Binary Message Format - Code Generator

This is a simple binary message format code generator.
It generates code for encoding and decoding messages in a binary format.The code generator is written in Go and can be used to generate code in Go, C#.
### Preparations
Actually there are no releases, so you have to build the code generator yourself.Therefore you need to have Go installed.
Once you have Go installed, you can build and install the code generator with the following command:```bash
go install github.com/Oppodelldog/sbmf
```## Usage
The code generator is a command line tool which takes a file as input.
The file contains the definition of the message format and meta information where to generate the code.```bash
sbmf sample.yaml
```See the [example/sample.yaml](example/sample.yaml) for an example.