duffer 1.2.4 copy "duffer: ^1.2.4" to clipboard
duffer: ^1.2.4 copied to clipboard

A pure dart library offering support for netty-like byte buffer manipulation and binary serialization via a pickle inspired system


Duffer Logo

A pure dart library offering support for netty-like byte buffer manipulation and binary serialization via a pickle inspired system.


Features #

Feature Status
Buffers
Read/Write
Get/Set ✅ (preview)
Child Buffers
Unpooled
Pooled
Primitive Datatypes
Hex Encoding
Base64 Encoding

Getting started #

After you've imported the library with

import 'package:duffer/duffer.dart';

You can creates buffers via the Unpooled and Pooled utility classes and just write to it and read from it

var buffer = Unpooled.buffer();
buffer.writeLPString("Hello World!");
buffer.writeInt32(42);

print(buffer.readLPString()); // Hello World!
print(buffer.readInt32()); // 42

or parse existing data via one of the various extension functions.

var buffer1 = "SGVsbG8gV29ybGQ=".parseBase64();
var buffer2 = "0000000b48656c6c6f20576f726c64".parseHex();

You can also encode your buffer using base64 or hex.

print(buffer.hex);
print(buffer.base64);

For more samples just have a look at the examples folder.

3
likes
0
pub points
46%
popularity

Publisher

verified publisherhelight.dev

A pure dart library offering support for netty-like byte buffer manipulation and binary serialization via a pickle inspired system

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on duffer