dev_http_proxy 0.0.3 copy "dev_http_proxy: ^0.0.3" to clipboard
dev_http_proxy: ^0.0.3 copied to clipboard

A real-world HTTP/HTTPS proxy server for Flutter/Dart with optional authentication and logging.

example/main.dart

// ignore_for_file: avoid_print

import 'package:dev_http_proxy/dev_http_proxy.dart';

void main() async {
  final proxy = DevHttpProxy(
    port: 8080,
    username: 'admin',
    password: '1234',
    logRequests: true,
  );

  await proxy.start();
  print('Proxy running at http://localhost:8080');
}
1
likes
160
points
41
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A real-world HTTP/HTTPS proxy server for Flutter/Dart with optional authentication and logging.

Homepage

License

MIT (license)

Dependencies

flutter

More

Packages that depend on dev_http_proxy