@habeetat/jrpc-client
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

JRPC-Client

Build Status Language Last Commit NPM Version License

JRPC-Client is a simple JSON-RPC 2.0 client for node.js and browser, developed in typescript for work synergy with JRPC-Server.

Install

npm i @habeetat/jrpc-client

Todo

  • [ ] Test
  • [ ] Documentation
  • [ ] Enable test in github action

How to use

export interface TestServerRpcMethods {
    /**
     * say hi
     */
    hi(person: { name: string, bithday: Date }): Promise<string>;

    /**
     * sum two numbers
     */
    sum(a: number, b: number): Promise<number>;

    /**
     * get all todos
     */
    getTodos(): Promise<{ id: number, text: string, completed: boolean }[]>;
}

(async () => {
    const resolver = async (url: string, data: string, resolve: (result: any) => void) => {
        console.log(`send to ${url} data ${data}`);
    };
    const client = new RpcClient<TestServerRpcMethods>("http://localhost:3000/rpc", resolver);
    const proxy = client.createProxy();
    const result = await proxy.hi({ name: "John", bithday: new Date() });
})();

Readme

Keywords

Package Sidebar

Install

npm i @habeetat/jrpc-client

Weekly Downloads

2

Version

0.0.3

License

MIT

Unpacked Size

7.96 kB

Total Files

8

Last publish

Collaborators

  • gcatania
  • paolo.parente
  • mndrke
  • ancapozzi
  • davidecapri
  • riktar