Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/DirectMyFile/msgpack.dart

MsgPack for Dart
https://github.com/DirectMyFile/msgpack.dart

Last synced: 18 days ago
JSON representation

MsgPack for Dart

Awesome Lists containing this project

README

        

# MsgPack for Dart

*Notice: This library has not been updated to Dart 2. Please see https://pub.dartlang.org/packages/msgpack_dart*

A full-featured MsgPack library for Dart.

## Simple Example

```dart
import "dart:typed_data";

import "package:msgpack/msgpack.dart";

main() {
var binary = new Uint8List.fromList(
new List.generate(40, (int i) => i)
).buffer.asByteData();

var data = {
"String": "Hello World",
"Integer": 42,
"Double": 45.29,
"Integer List": [1, 2, 3],
"Binary": binary,
"Map": {
1: 2,
3: 4
}
};

List packed = pack(data);
Map unpacked = unpack(packed);

print(unpacked);
}
```