GithubHelp home page GithubHelp logo

jwerle / browser-rpc-swarm Goto Github PK

View Code? Open in Web Editor NEW
5.0 1.0 2.0 18 KB

Give control of your browser over RPC to another in a discovery swarm

License: MIT License

JavaScript 100.00%
browser swarm webrtc rpc

browser-rpc-swarm's Introduction

browser-rpc-swarm

Give control of your browser over RPC to another in a discovery swarm. This module uses rpc-protocol and webrtc-swarm to discovery peers and initiate a RPC channel.

Installation

$ npm install browser-rpc-swarm

Usage

const signalhub = require('signalhub')
const swarm = require('./')
const key = '626d55ffe6eafc13e32309ca4985b83cf15c0c015e6ba8f32dcebed2a50e0c27'
const hub = signalhub(key, [ 'yourdomain.com' ])
const rpc = swarm(hub)

rpc.command({
  async echo(value) {
    return value
  }
})

rpc.on('peer', (peer) => {
  console.log(await peer.echo('hello world')) // 'hello world'
})

API

rpc = require('browser-rpc-swarm')(signalhub, opts)

where signalhub is a signalhub instance and opts is passed directly to webrtc-swarm.

rpc.command(name, callback)

Create a named command with a callback function to resolve a response to the caller.

// A simple 'echo' command that simply returns the value given to it
rpc.command('echo', (value) => value

rpc.command(manifest)

Create several commands described by an object with functions that are callbacks to resolve a response to the caller.

rpc.command({
  echo(value) {
    return value
  }
})

rpc.destroy()

An alias to to rpc.close()

rpc.close(callback)

Close the RPC channel and all of its resources.

rpc.on('peer', peer)

Emitted when a peer connection has been established and a command manifest has been exchanged. Commands are attached directly to the instance and can be called like normal functions. They return promises that resolve when the peer replying to command issues a response.

Consider a command called echo() that a peer defines in their manifest. The command simply returns the input argument given to it.

rpc.command({
  echo(value) {
    return value
  }
})

The caller for this command can call this command after peer discovery like a normal function.

rpc.on('peer', async (peer) => {
  console.log(await rpc.echo('hello world')) // 'hello world'
})

License

MIT

browser-rpc-swarm's People

Contributors

jwerle avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.