git ssb

2+

Dominic / ssb-client



Tree: 86d0b95326caac6ad1b7fac2ae2a78f07ff53a60

Files: 86d0b95326caac6ad1b7fac2ae2a78f07ff53a60 / README.md

645 bytesRaw

ssb-client v2

Scuttlebot client.

var ssbClient = require('ssb-client')

// simplest usage, connect to localhost sbot
ssbClient(function (err, sbot) {
  // ...
})

// configuration:
var keys = ssbKeys.loadOrCreateSync('./app-private.key')
ssbClient(
  keys,                // optional, defaults to ~/.ssb/secret
  {
    host: 'localhost', // optional, defaults to localhost
    port: 8008,        // optional, defaults to 8008
    key: keys.id       // optional, defaults to keys.id
  },
  function (err, sbot) {
    // ...
  }
)

License

MIT, Copyright 2015 Paul Frazee and Dominic Tarr

Built with git-ssb-web