yet_another_json_isolate 1.1.1 icon indicating copy to clipboard operation
yet_another_json_isolate: ^1.1.1 copied to clipboard

Package to simplify and improve JSON parsing in isolates by keeping one isolate running per instance.

Yet Another Json Isolate #

Dart package for simple JSON parsing using isolates, because the world can never have enough JSON parsers.

Usage #

// initialize an `YAJsonIsolate` instance
final isolate = YAJsonIsolate()..initialize();

// serialize a JSON using an isolate
final requestBody = await isolate.encode(requestObject);

// deserialize a JSON string using an isolate
final json = await isolate.decode(responseBody);

// dispose when no longer needed
isolate.dispose();
1
likes
140
pub points
82%
popularity

Publisher

verified publisher iconsupabase.io

Package to simplify and improve JSON parsing in isolates by keeping one isolate running per instance.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Icon for licenses.MIT (LICENSE)

Dependencies

async

More

Packages that depend on yet_another_json_isolate