jala 0.1.2 copy "jala: ^0.1.2" to clipboard
jala: ^0.1.2 copied to clipboard

In-app Flutter network inspector. Facade over jala_core + jala_ui with zero-config initialize, production-safe defaults, and a draggable overlay.

jala #

Facade package for Jala, the in-app Flutter network inspector — Jala.initialize() plus JalaOverlay wire up capture, storage, and the inspector UI in two lines.

See the repo README for the full pitch (replay, filter grammar, redaction-by-default), the comparison vs. alice/chucker_flutter/ talker, and the roadmap.

Quick start #

dependencies:
  jala: ^0.1.0
  jala_dio: ^0.1.0   # if you use Dio
  dio: ^5.0.0
import 'package:dio/dio.dart';
import 'package:flutter/material.dart';
import 'package:jala/jala.dart';
import 'package:jala_dio/jala_dio.dart';

void main() {
  Jala.initialize(); // enabled: kDebugMode by default
  final dio = Dio();
  JalaDio.attach(dio);
  runApp(JalaOverlay(child: MyApp(dio: dio)));
}

Tap the floating J bubble (or call Jala.open()) to inspect traffic. enabled defaults to kDebugMode, and JalaOverlay returns child unchanged when disabled — see the repo README for the full production-safety story.

See docs/SPEC-v0.1.md for the full v0.1 contract.

3
likes
0
points
419
downloads

Publisher

verified publisherketok.id

Weekly Downloads

In-app Flutter network inspector. Facade over jala_core + jala_ui with zero-config initialize, production-safe defaults, and a draggable overlay.

Repository (GitHub)
View/report issues

Topics

#network #debugging #devtools #http #dio

License

unknown (license)

Dependencies

flutter, jala_core, jala_ui

More

Packages that depend on jala