https://github.com/vlang/msgpack
https://github.com/vlang/msgpack
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vlang/msgpack
- Owner: vlang
- License: mit
- Created: 2022-09-08T16:11:03.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-04T05:59:35.000Z (over 1 year ago)
- Last Synced: 2025-03-05T20:35:53.293Z (over 1 year ago)
- Language: V
- Size: 210 KB
- Stars: 21
- Watchers: 31
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vlang msgpack encoder/decoder module
MessagePack is an efficient binary serialization format.
It's like JSON. but fast and small.
View the specification: https://github.com/msgpack/msgpack
# Status
The changes required to run this have now been merged into v master.
## Encoding
Working for all basic types, with support for the time extension.
Support for custom extensions will be added soon.
## Decoding
It is still not possible to decode to a data structure, currently
decode only prints the decoded data. This will be implemented soon.
# Examples
You can see some basic examples are in the `examples/` directory