Socket
Socket
Sign inDemoInstall

@habeetat/jrpc-client

Package Overview
Dependencies
1
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @habeetat/jrpc-client

Json RPC Client


Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Install size
121 kB
Created
Weekly downloads
 

Readme

Source

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() });
})();

Keywords

FAQs

Last updated on 19 May 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc