Is there some canonical library if I need a JSONRP...
# getting-started
f
Is there some canonical library if I need a JSONRPC2 client in Kotlin? There are a few small projects, most with barely any stars on GitHub https://github.com/Reedyuk/jsonrpc-kotlin-client, or other larger projects that seem outdated, and e.g. don't have documentation anymore because the wiki link is broken https://github.com/markaren/YAJ-RPC
m
If there are no robust or stable Kotlin libraries you can look for a Java one, if you’re targeting the JVM. Otherwise if you’re not forced to use JSON RPC and you can take design decision, I’d suggest using gRPC which uses JSON and it’s well supported by Google.