Async http client

In a 2022 post regarding Core Haxe, you mentioned the development of an asynchronous HTTP client for hxcpp.
Could you provide an update on the progress of this project?

So core-haxe is defo “a thing”, and i use it in production apps daily. The lib you are looking for is “http”: https://github.com/core-haxe/http

On hxcpp (and hl) its threaded by default (using the sys threads) so it should be a consistent http interfaces between platforms / targets :slight_smile:

for ref: https://github.com/core-haxe/http/blob/main/src/http/providers/DefaultHttpProvider.hx

1 Like