Yeah, it's a common problem with non deterministic api schemas, e.g. openapi and swagger (https://swagger.io/specification/), but Taxi looks similar in some aspects to protoforce (https://www.protoforce.io/) except that…
gRPC is quite counter-ergonomic with its own set of issues when trying to map a business domain to actual solutions. protoforce.io has better modeling and implementation design, supports also 2-way communication, while…
We were bothered by the same thing :) Many plugins for OpenAPI had no codegens which would produce deterministic behavior for compatibility across various languages. Also we wanted to have something that could express…
For protoforce, we provide completely asynchronous server and client SDKs for scala and nodejs, also we suport websockets as a transport. Java sdk is built on Futures, so somehow it's async as well. Also we support…
Noted, thank you.
We focused on the desktop because it is difficult to use from mobile due to it being an online IDE. I'll take a look, thank you for reporting.
Thank you. 1. Scala, Typescript/Javascript, and Java at the moment. 2. It does provide the runtime which allows to bootstrap a server easily. (You can check out this post which has modeling + scala setup example at the…
We've built a similar thing at https://www.protoforce.io, which auto-generates client and server side. It actually transpiles, parsing the models definitions and emits actual code with a bit of shared runtime. Good…
I think there is a trend for a set of tools which auto-generate stuff. It started back with web tools generating websites from WYSIWYG, now it is getting everywhere. We build services and models using…
Yeah, it's a common problem with non deterministic api schemas, e.g. openapi and swagger (https://swagger.io/specification/), but Taxi looks similar in some aspects to protoforce (https://www.protoforce.io/) except that…
gRPC is quite counter-ergonomic with its own set of issues when trying to map a business domain to actual solutions. protoforce.io has better modeling and implementation design, supports also 2-way communication, while…
We were bothered by the same thing :) Many plugins for OpenAPI had no codegens which would produce deterministic behavior for compatibility across various languages. Also we wanted to have something that could express…
For protoforce, we provide completely asynchronous server and client SDKs for scala and nodejs, also we suport websockets as a transport. Java sdk is built on Futures, so somehow it's async as well. Also we support…
Noted, thank you.
We focused on the desktop because it is difficult to use from mobile due to it being an online IDE. I'll take a look, thank you for reporting.
Thank you. 1. Scala, Typescript/Javascript, and Java at the moment. 2. It does provide the runtime which allows to bootstrap a server easily. (You can check out this post which has modeling + scala setup example at the…
We've built a similar thing at https://www.protoforce.io, which auto-generates client and server side. It actually transpiles, parsing the models definitions and emits actual code with a bit of shared runtime. Good…
I think there is a trend for a set of tools which auto-generate stuff. It started back with web tools generating websites from WYSIWYG, now it is getting everywhere. We build services and models using…