-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
usable #1
Comments
Hi Joe, as I described in the readme file, this is a proof-of-concept. One thing missing is grpc compression. The http2 implementation it uses is missing stream prioritization. That being said, one goal of the grpc team was that it should be very easy adapt to new languages (given an http2 implementation). So it might not take much more code than this proof of concept. |
sounds like i can try it out. I doubt it wil work in a browser, because of the lack of header / framing support in the browsers. But it looks like it will work server to server |
I agree, it won't work inside a browser due to the lack of normal socket support. It's the first time I hear of grpc-gateway, so I don't know how it works. But I doubt that it will be fully compatible with normal grpc due to the lack of streaming. |
thanks for the answer. I am thinking now of a better way to get dart to talk to golang that is low friction. Here are my scenarios: This scenario i dont knwo how to do: If you have any ideas please let me know. I will close this issue if i am bugging you too much of course... |
here is the link for you: The gateway is in there websocket support: |
@mkustermann There is now an agreed spec for GRPC-web So a Dart implementation is now doable that will work on FLutter and Dart web. grpc/grpc#8682 I would like to help on Te Dart code. |
Hey
i am a golang programmer, but for the last 2 months been working on flutter and angular 2 in dart.
i am seriously needing a way for Dart to interoperate with golang.
GRPC really seems like the way forward i feel.
But this is the only library i have found.
Is this stable / usable yet ?
The text was updated successfully, but these errors were encountered: