cel committed 0.6.0Latest: 8b68273 on 9/19/2017, 5:14:42 AM | |
📄 | README.md |
📄 | autoclose.js |
📄 | cli.js |
📄 | control.js |
📄 | index.js |
📄 | package.json |
📄 | server.js |
📄 | test.js |
README.md
ssb-party
Get a scuttlebot client instance. If scuttlebot isn't running, start it in the background, and keep it running until all the clients have disconnected.
Usage
var createSsbParty = require('ssb-party')
createSsbParty([opts, ]cb)
opts.keys
: an ssb-keys instance. default loads from~/.ssb/secret
opts.host
: host to connect to or start the server on. default"localhost"
opts.port
: port to connect to or start the server on. default 8008opts.appKey
: secret-stack capability key (Buffer). default sbot's appKey
Other properties of the opts
object will be used as ssb-config
overrides, but if the server is already running, these will not affect the existing server's config.
Example
simplest case: connect to or start a local sbot:
var party = require('ssb-party')
party(function (err, sbot) {
// ...
})
Config
config.timers.keepalive
: minimum time (ms) to keep the server online after the last client disconnects. default: 30sconfig.party.out
: where to put standard output of sbot. may be a path (absolute, or relative to ssb's directory), orfalse
to discard, ortrue
to pass through to the controlling terminal. default:true
config.party.err
: where to put standard error of sbot. default: same asconfig.party.out
License
Copyright (c) 2017 @cel
Usage of the works is permitted provided that this instrument is retained with the works, so that any entity that uses the works is notified of this instrument.
DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
Built with git-ssb-web