Clone this repo:
  1. 44b5913 Update analysis_options.yaml (#51) by Devon Carew · 3 days ago master
  2. df54f0d Bump actions/checkout from 4.1.7 to 4.2.0 (#50) by dependabot[bot] · 3 days ago
  3. 91c0dd5 Bump actions/checkout from 4.1.6 to 4.1.7 (#49) by dependabot[bot] · 3 months ago
  4. ab8377e Bump dart-lang/setup-dart from 1.6.2 to 1.6.5 (#48) by dependabot[bot] · 4 months ago
  5. 7622bdd Bump actions/checkout from 4.1.4 to 4.1.6 (#47) by dependabot[bot] · 5 months ago

Dart CI pub package package publisher

A Dart HTTP client implemented using RawSynchronousSockets to allow for synchronous HTTP requests.

Using this package

Note: this package is only intended for very specialized use cases. For general HTTP usage, please see instead package:http.

This library should probably only be used to connect to HTTP servers that are hosted on ‘localhost’. The operations in this library will block the calling thread to wait for a response from the HTTP server. The thread can process no other events while waiting for the server to respond. As such, this synchronous HTTP client library is not suitable for applications that require high performance. Instead, such applications should use libraries built on asynchronous I/O, including dart:io and package:http, for the best performance.