Go to file
Fabian Stamm a2224bbf95 Working on Async Implementation 2022-04-17 10:46:37 +00:00
.vscode Add alias flag for allowing bytes 2022-04-12 20:56:46 +00:00
.yarn First Commit 2021-12-31 21:38:26 +00:00
examples Start implementing Rust 2022-04-13 18:58:53 +00:00
lib Start implementing Rust 2022-04-13 18:58:53 +00:00
src Working on Async Implementation 2022-04-17 10:46:37 +00:00
templates Working on Async Implementation 2022-04-17 10:46:37 +00:00
.editorconfig First Commit 2021-12-31 21:38:26 +00:00
.gitignore Start implementing rust 2022-04-13 19:01:43 +00:00
.yarnrc.yml First Commit 2021-12-31 21:38:26 +00:00
README.md Adding some Readme stuff 2022-01-03 21:08:25 +00:00
meta.json Add alias flag for allowing bytes 2022-04-12 20:56:46 +00:00
package.json Start implementing rust 2022-04-13 19:01:43 +00:00
tsconfig.json Removing prettier for now. Adding CLI option and making it bundle before release to decrease startup time. 2022-01-01 01:08:05 +00:00
yarn.lock Adding C# Support. Badly tested currently, but kindof working 2022-01-05 21:16:17 +00:00

README.md

JSON-RPC 2.0 Code-Gen

Type/Service definition language and code generator for json-rpc 2.0. Currently generating code for NodeJS, Deno and the Web. Other targets are possible, but not implemented yet.

Name Description
ts-node Typescript for NodeJS
ts-esm Typescript in ESM format for Deno

Usage

Create a definition file like test.jrpc:

enum TestEnum {
  VAL1,
  VAL2,
  VAL10 = 10,
  VAL11,
  VAL12
}

type Test {
  testen: TestEnum;
  someString: string;
  someNumber: number;
  array: string[];
  map: {number, TestEnum};
}

service TestService {
  @Description("This Function adds two number")
  @Param("v1", "The first Number")
  @Param("v2", "The second Number")
  @Returns("The added values of the two numbers")
  AddNumbers(v1: number,  v2: number): number;


  notification SendTest(test: Test);
}

Then run the generator like this jrpc compile test.jrpc -o=ts-node:output/.

This will generate the Client and Server code in the specified folder.

//TODO: Make Documentation better