2.5.0 • Published 2 years ago

multi-rpc v2.5.0

Weekly downloads
6
License
Apache-2.0
Repository
github
Last release
2 years ago

multi-rpc

NPM

Build Status FOSSA Status

Multi-RPC is a JSON RPC 2 client/server implementation designed with multiple transports and serialization methods in mind. It works both in Node and the browser.

Out of the box it supports serialization with JSON and MessagePack over TCP, HTTP and WebSocket. Writing new serializers and transports is pretty straightforward.

A server can listen on multiple transports which allows for listening using multiple protcols or on multiple interfaces.

Connections via persistent transports like WebSocket or TCP are kept alive and the server can send notifications to clients (a feature which is not offically in the standard).

Example

(async () => {
    const { 
        Server, 
        Client,
        JSONSerializer,
        TCPTransport
    } = require('multi-rpc');

    const serializer = new JSONSerializer();

    const serverTransport = new TCPTransport(serializer, 1234);
    const clientTransport = new TCPTransport(serializer, 1234);

    const server = new Server(serverTransport);
    const client = new Client(clientTransport);

    server.methods.foo = (arg1, arg2, arg3) => {
        console.log(arg1, arg2, arg3);
        return arg1 + arg2 + arg3;
    };

    await server.listen();

    const result1 = await client.invoke("foo", [1,2,3]);
    const result2 = await client.invoke("foo", {
        arg1: 1,
        arg2: 2,
        arg3: 3
    });

    console.log(result1 + result2);

    process.exit();
})();

More examples are available in the wiki.

Projects layout

The Multi-RPC package is comprised of several modules which can be installed individually.

NameDescriptionBrowser compatible
multi-rpc-browserExcludes server-side transports
multi-rpc-commonCommon classes used throughout the project.
multi-rpc-coreServer/Client implementation
multi-rpc-http-client-side-transportA HTTP client-side transport
multi-rpc-http-transportA HTTP transport with client/server functionality
multi-rpc-json-serializerA JSON serializer
multi-rpc-msgpack-serializerA MSGPack Serializer
multi-rpc-tcp-transportA TCP transport with client/server functionality
multi-rpc-websocket-client-side-transportA WebSocket client-side transport
multi-rpc-websocket-transportA WebSocket transport with client/server functionality

Tests & Documentation

For mocha tests and documention refer to the individual package (e.g. multi-rpc-common).

Building

Multi-RPC is written in TypeScript. To compile JavaScript run npm run build.

2.2.1

2 years ago

2.2.0

2 years ago

2.4.0

2 years ago

2.0.0

2 years ago

2.3.0

2 years ago

2.5.0

2 years ago

2.3.2

2 years ago

2.3.1

2 years ago

2.1.0

2 years ago

1.9.0

2 years ago

1.8.2

3 years ago

1.8.4

3 years ago

1.8.3

3 years ago

1.8.1

3 years ago

1.8.0

3 years ago

1.7.8

3 years ago

1.7.7

3 years ago

1.7.6

3 years ago

1.7.5

3 years ago

1.7.3

3 years ago

1.7.2

3 years ago

1.7.1

3 years ago

1.7.0

3 years ago

1.7.4

3 years ago

1.6.4

3 years ago

1.6.3

3 years ago

1.6.1

3 years ago

1.6.7

3 years ago

1.6.6

3 years ago

1.6.5

3 years ago

1.6.0

3 years ago

1.5.9

4 years ago

1.5.7

4 years ago

1.5.6

5 years ago

1.5.5

5 years ago

1.5.4

5 years ago

1.5.3

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago