get-convex / convex-backend

The Convex open-source backend
https://docs.convex.dev
Other
2.06k stars 77 forks source link

Support for golang #9

Open iamzainn opened 3 months ago

iamzainn commented 3 months ago

why convex is not supporting golang ?

nipunn1313 commented 3 months ago

You can always use the HTTP API from any language https://docs.convex.dev/http-api/

Here's an example of someone using the http API from go.

https://github.com/gautamg795/convex-golink/blob/422634e28d2cd5eb97ce9f5adf3b86209cb08156/convex.go

There's not yet full first-class support including subscriptions and reactivity. We have that for browser,nodejs,python,rust. The rust client has subscriptions and can be wrapped via FFI - so you're welcome to build your own subscription client down that route too.