Skip to content

Latest commit

 

History

History
252 lines (214 loc) · 12.8 KB

http-client.md

File metadata and controls

252 lines (214 loc) · 12.8 KB

Bookmarks tagged [http-client]

https://blog.bitsrc.io/7-ways-to-leverage-httpinterceptors-in-angular-59436611844d

Useful things we can do with HttpInterceptors are endless. Here I listed a few of them, you can go on and find ways in which they can be very helpful in your Angular app


https://github.com/h2non/gentleman

Full-featured plugin-driven HTTP client library.


https://github.com/smallnest/goreq

Enhanced simplified HTTP client based on gorequest.


https://github.com/levigross/grequests

A Go "clone" of the great and famous Requests library.


https://github.com/gojektech/heimdall

An enchanced http client with retry and hystrix capabilities.


https://github.com/sethgrid/pester

Go HTTP client calls with retries, backoff, and concurrency.


https://github.com/ddo/rq

A nicer interface for golang stdlib HTTP client.


https://github.com/dghubble/sling

Sling is a Go HTTP client library for creating and sending API requests.


https://github.com/excon/excon

Usable, fast, simple Ruby HTTP 1.1. It works great as a general HTTP(s) client and is particularly well suited to usage in API clients.


https://github.com/lostisland/faraday

an HTTP client lib that provides a common interface over many adapters (such as Net::HTTP) and embraces the concept of Rack middleware when processing the request/response cycle.


https://github.com/podigee/device_detector

A precise and fast user agent parser and device detector, backed by the largest and most up-to-date user agent database.


https://github.com/nahi/httpclient

Gives something like the functionality of libwww-perl (LWP) in Ruby.


https://github.com/httprb/http

The HTTP Gem: a simple Ruby DSL for making HTTP requests.


https://gitlab.com/honeyryderchuck/httpx

acknowledges the ease-of-use of the http gem API (itself inspired by python requests library) which aims at reusing the same facade, extending it for the use cases wh...


https://github.com/jnunemaker/httparty

Makes http fun again!


https://github.com/igrigorik/http-2

Pure Ruby implementation of HTTP/2 protocol


https://github.com/toland/patron

Patron is a Ruby HTTP client library based on libcurl.


https://github.com/rest-client/rest-client

Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.


https://github.com/savonrb/savon

Savon is a SOAP client for the Ruby programming language.


https://github.com/lostisland/sawyer

Secret user agent of HTTP, built on top of Faraday.


https://github.com/aderyabin/sniffer

Log and Analyze Outgoing HTTP Requests. Contribute to aderyabin/sniffer development by creating an account on GitHub.


https://github.com/typhoeus/typhoeus

Typhoeus wraps libcurl in order to make fast and reliable requests.


https://github.com/AsyncHttpClient/async-http-client

Asynchronous HTTP and WebSocket client library.


https://github.com/Netflix/feign

HTTP client binder inspired by Retrofit, JAXRS-2.0, and WebSocket.


https://square.github.io/okhttp

HTTP+SPDY client.


https://github.com/playframework/play-ws

Typesafe client with reactive streams and caching.


https://github.com/B2W-BIT/restQL-core

Microservice query language that fetches information from multiple services.


https://square.github.io/retrofit

Typesafe REST client.


https://github.com/zalando/riptide

Client-side response routing for Spring's RestTemplate.


https://httpie.org/

HTTPie—aitch-tee-tee-pie—is a command line HTTP client with an intuitive UI, JSON support, syntax highlighting, wget-like downloads, plugins, and more

Docs


http://square.github.io/okhttp/

An HTTP & HTTP/2 client for Android and Java applications


https://github.com/OpenFeign/feign

Feign makes writing java http clients easier.

Feign is a Java to HTTP client binder inspired by Retrofit, JAXRS-2.0, and WebSocket. Feign's first goal was reducing the complexity of binding Denomina...


http://blog.angular-university.io/angular-http/

This post will be a quick practical guide for the Angular HTTP Client module. We will cover how to do HTTP in Angular in general. We will be using the new @angular/common/http module, but a good...


http://visionmedia.github.io/superagent/

SuperAgent is light-weight progressive ajax API crafted for flexibility, readability, and a low learning curve after being frustrated with many of the existing request APIs. It also works with Node.js...


https://github.com/request/request

Request is designed to be the simplest way possible to make http calls. It supports HTTPS and follows redirects by default. ...