HTTP.jl icon indicating copy to clipboard operation
HTTP.jl copied to clipboard

HTTP library (server, client, parser) for the Julia language

Results 3 HTTP.jl issues
Sort by recently updated
recently updated
newest added

_This issue is being filed by a script, but if you reply, I will see it._ [PackageEvaluator.jl](https://github.com/IainNZ/PackageEvaluator.jl) is a script that runs nightly. It attempts to load all Julia packages...

Every other "get" with an HTTPClient object seems to fail: ``` julia julia> conn=HTTPClient.open("www.google.com",80) julia> x=HTTPClient.get(conn,"/") # works julia> x=HTTPClient.get(conn,"/") ERROR: type Nothing has no field captures in parse_response_line at...

I can't get the examples from your page to work: ``` julia require("HTTP/ocean") using Ocean app = new_app() get(app, "/", function(req, res, _) return "Hello World" end) BasicServer.bind(8000, binding(app), true)...