Available list of alternative Crux clients? #1436
-
I saw that an amazing individual created two clients for Crux in elixir and rust. Is there a list of other http clients created by the community or supported by Crux? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The
We also have an OpenAPI schema published here: https://crux-doc.s3.eu-west-2.amazonaws.com/redoc/21.02-1.15.0/crux-redoc.html (linked to from https://opencrux.com/reference/21.02-1.15.0/http.html#rest-api) ...theoretically you can generate clients in all manner of languages based on that Which languages are you most interested to see added to the roster? |
Beta Was this translation helpful? Give feedback.
The
crux-http-client
module is our supported Clojure + Java client, accessible via the following:We also have an OpenAPI schema published here: https://crux-doc.s3.eu-west-2.amazonaws.com/redoc/21.02-1.15.0/crux-redoc.html (linked to from https://opencrux.com/reference/21.02-1.15.0/http.html#rest-api)
...theoretically you can generate clients in all manner of languages based on that
.json
specification alone, using https://github.com/OpenAPITools/openapi-generator,…