You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
peter ed3da909c6 push пре 4 година
src doc пре 4 година
test test checkin docs пре 4 година
.drone.yml push пре 4 година
.gitignore automate documentation пре 4 година
.npmignore fix пре 4 година
README.md push пре 4 година
package-lock.json test checkin docs пре 4 година
package.json hide breadcrumbs пре 4 година
tsconfig.json werks пре 4 година

README.md

About

rpclibrary is a websocket on steroids!

How to install

npm i rpclibrary

Quickstart

import {Backend, Frontend} from 'rpclibrary'

const echo = (x) => x

const server = new Backend.RPCServer(20000, [{
    name: 'HelloWorldRPCGroup',
    exportRPCs: ()  => [
        echo,
        function echof(x){ return x },
        {
            name: 'echoExplicit',
            call: async (x) => x
        }
    ]
}])

const client = new Frontend.RPCSocket(20000, 'localhost')

client.connect().then(async () => {
    const r0 = await client['HelloWorldRPCGroup'].echo('Hello')
    const r1 = await client['HelloWorldRPCGroup'].echof('World')
    const r2 = await client['HelloWorldRPCGroup'].echoExplicit('RPC!')

    console.log(r0,r1,r2)
})

Documentation

[https://gitea.frontblock.me/fw-docs/rpclibrary]