http_client 0.2.0 copy "http_client: ^0.2.0" to clipboard
http_client: ^0.2.0 copied to clipboard

outdatedDart 1 only

A platform-independent HTTP client API. Implemented platforms: `console` and `browser` (both delegating to the `http` package). Planned platforms: Fetch API, Node.js (with `node_io` wrapper).

HTTP client wrapper #

Wrapper of the http package to provide a single interface for both browser and console clients, until it will support it out of the box.

Usage: #

To develop your platform-agnostic library, use only the base import:

import 'package:http_client/http_client.dart' as http;

class MyServiceClient {
  final http.Client httpClient;
  MyServiceClient(this.httpClient);
}

For console apps:

import 'package:http_client/console.dart' as http;

main() async {
  http.Client client = new http.ConsoleClient();
  // use the client, eg.:
  // new MyServiceClient(client)
  await client.close();
}

For browser use, only change the first import:

import 'package:http_client/browser.dart' as http;

main() {
  http.Client client = new http.BrowserClient();
  // use the client, eg.:
  // new MyServiceClient(client)
  await client.close();
}
15
likes
0
pub points
89%
popularity

Publisher

verified publisheragilord.com

A platform-independent HTTP client API. Implemented platforms: `console` and `browser` (both delegating to the `http` package). Planned platforms: Fetch API, Node.js (with `node_io` wrapper).

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on http_client