simple HTTP client in Erlang
Las características principales de benoitc/hackney son: HTTP, HTTP Clients and Servers.
Las alternativas de código abierto para benoitc/hackney incluyen: ninenines/gun — HTTP/1.1, HTTP/2, Websocket client (and more) for Erlang/OTP. twisted/twisted — Twisted is an event-driven networking engine for Python that provides a framework for building asynchronous network… micronaut-projects/micronaut-core — Micronaut Application Framework. ipfs/js-ipfs — js-ipfs is an HTTP client library that connects to any IPFS daemon, enabling JavaScript applications to interact with… codeplea/hands-on-network-programming-with-c — This project serves as a comprehensive tutorial and technical resource for developing network applications in the C… crowdhailer/raxx — Interface for HTTP webservers, frameworks and clients.
Micronaut Application Framework
js-ipfs is an HTTP client library that connects to any IPFS daemon, enabling JavaScript applications to interact with the InterPlanetary File System. It provides a promise-based asynchronous API for managing content-addressed storage, where all data is identified by cryptographic hashes (CIDs) for immutable references and deduplication. The library communicates with a remote IPFS node through HTTP requests, supporting cancellation of in-flight operations via standard AbortController signals. The library offers a comprehensive set of capabilities for working with IPFS, including adding and ret
Twisted is an event-driven networking engine for Python that provides a framework for building asynchronous network applications. At its core, it uses a reactor-based event loop to drive all input and output, dispatching callbacks in a single thread without blocking. The library implements a deferred promise chain for composing asynchronous logic, along with a protocol and factory pattern that separates connection state management from protocol handling, enabling reusable handlers for different network protocols. The framework supports multiple event loops across platforms, including select,