I have a use case where I have to encode and decode binary messages to send and receive over HTTP. In this particular case, I need to produce and parse application/dns-message used in DNS-over-HTTPS for a DNS zone viewer and editor.
I found https://github.com/elm/bytes which seems to do exactly what I need.
I tried elm install elm/bytes
but it doesn’t recognize the package name. I can git clone the repo, but then how do I go about adding the package to my system?
Thanks