a simple http library written in Jai.
Warning
This is unfinished software. Here be Dragons!
The latest version of Jai I have compiled this with is:
$ jai -version
Version: beta 0.1.077, built on 17 November 2023.
I have made some examples in the examples/
directory.
- HTTP Request message parser
Can parse HTTP request messages. You provide the message as a string, and it does the rest. It is located in theparse_request.jai
file, and can be disabled with theNO_PARSE_REQUEST
flag. - HTTP Response message parser
Can parse HTTP response messages. You provide the message as a string, and it does the rest. It is located in theparse_response.jai
file, and can be disabled with theNO_PARSE_RESPONSE
flag.