github.com/vcilabs/webrpc@v0.5.2-0.20201116131534-162e27b1b33b/gen/typescript/README.md (about)

     1  webrpc Typescript generator
     2  ===========================
     3  
     4  This generator, from a webrpc schema/design file will code-generate:
     5  
     6  1. Client -- an isomorphic/universal Typescript client to speak to a webrpc server using the
     7  provided schema. This client is compatible with any webrpc server language (ie. Go, nodejs, etc.).
     8  As the client is isomorphic, means you can use this within a Web browser or use the client in a 
     9  server like nodejs -- both without needing any dependencies. I suggest to read the generated TS
    10  output of the generated code, and you shall see, its nothing fancy, just the sort of thing you'd
    11  write by hand.
    12  
    13  2. Server -- a nodejs Typescript server handler. See examples.