You are viewing a single comment's thread from:
RE: Dev Portal Update: Tutorials, Recipes, and Tweaks, Oh My!
Great work on tutorials. Could this mean PRs to the dev portal are being accepted now?
Developer's reference is really good as well. I hadn't realized until now how often I'm actually digging through the source code as a reference instead of referring to the documentation.
I think one tutorial that is really missing here is a high-level for creating your own language binding for json-rpc. I'm sure there are some devs out there that would love to traverse transactions with R.
Like creating an ideal Steem client specification?
https://github.com/steemit/devportal/issues/256
Yeah. I think that nails it. If we had something like an openapi specification or Swagger spec
Those would be great.
Incidentally, we actually have tests for verifying stuff like the
curl
examples in the API Definitions. If you want to try the tests yourself, they're right over here:https://github.com/steemit/devportal#tests
And we also generate/verify the API Spec here:
https://github.com/steemit/devportal#managing-api-definitions
When I said generated, I meant from the actual source code. I'm basically suggesting a literate programming approach with specification as code.
Like if @inertia made changes to the json-rpc, then specification changes would be accepted in the same PR. In the next CI build, documentation could be generated, but that's not what's important. What's important is that now the specification itself is deployed with the software and can be used to generate/verify a client.
From a single change, you have now affected several facets.