Giter Site home page Giter Site logo

ssb-afterparty's Introduction

ssb-afterparty

Tools to allow ssb clients to spawn processes to add plugins and views to an already existing sbot instance.

Components

index.js

This class takes an input channel and output channel and gives you a promise to an extendable sbot pipe to attach plugins to

plugify.js & flume.js

These modules emulate sbot's plugin system and flumeDb for view creation (provides use and _flumeUse methods)

connect.js

This module provides methods to augment a running client instance by attaching a view channel or api. pipeIn(api, clientChannel) takes an input channel and augments the passed in api with the methods available over the channel. pipeOut(api, manifest, serveChannel) creates a muxrpc service and connects it to a channel. fromInputChannel(clientChannel) creates a new api muxrpc from a channel toOutputStream(api, manifest) creates a muxrpc service channel from an api inStream(api, overwriteOpts, cb) creates a stream that when pulled to, extends api, easy to pass this around, cb is called when the api has been extended

//
// In the main thread
//
import afterparty from 'ssb-afterparty'
import msChannel from 'ssb-afterparty/channels/multiserver'
import ws from 'multiserver/plugins/ws'

// Using async because it's nice, but you can use promise notation here too
async function setup(api, manifest) {
  var inWs = ws({port: 1234})
  var outWs = ws({port: 1235})

  // To serve an api out to a pipe
  var toPipe = ms.server(inWs)
  pipeOut(api, manifest, toPipe)

  // To merge in methods provided by a pipe
  var fromPipe = ms.client('ws://localhost:1235', outWs)
  var sbot = await pipeIn(api, fromPipe)

  // Now you can use more plugins
  sbot.about.get((err, val) => {
    // access your plugins here        
  })    
}

//
// In the worker/separate thread
//
import afterparty from 'ssb-afterparty'
import msChannel from 'ssb-afterparty/channels/multiserver'
import ws from 'multiserver/plugins/ws'

async function setup() {
  // Create channel from sbot or elsewhere
  var inputToPipe = msChannel.client('ws://localhost:1234', ws({port: 1234})

  // Create channel to a multiserver to serve
  var outputFromPipe = msChannel.server(ws({port: 1235})

  // Pass this argument to tell whether to forward all methods through, or
  // only new methods
  var forward = false

  var sbot = await afterparty(inputToPipe, outputFromPipe, forward)

  sbot.use(require('ssb-private'), overwrite: true)
      .use(require('ssb-about'))

  sbot()
}

ssb-afterparty's People

Contributors

mlegore avatar

Stargazers

 avatar

Watchers

 avatar  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.