HTTP REST API server best practice?

Hi all,
I’m trying to write a toy homeserver for Matrix much similar to their reference realization of the protocol of Synapse which is in Python.

The setup consists of Nginx reverse proxy from port 443 to the HTTP server. The clients use POST and GET etc. to interact with JSON payloads. I’m looking at Mux.jl because HttpServer.jl is deprecated. Is this what I want for the server-client API?

2 Likes

Either Mux.jl or HTTP.jl (the latter has also rest examples ;))

1 Like