git ssb

2+

cel / scuttlebot.io



Tree: 2b3708ff390cc334653a3a9ff0f511f866423af7

Files: 2b3708ff390cc334653a3a9ff0f511f866423af7 / tmpl / docs / basics / open-a-client.md

456 bytesRaw

Open an API client

If you're using Scuttlebot from a JS application, you will need to open a client connection.

If you're using the command-line, you can <a href="./publish-a-message.html">skip this step.</a>

var ssbClient = require('ssb-client')
ssbClient(function (err, sbot) {
  if (err)
    throw err

  // sbot is now ready. when done:
  sbot.close()
})

Currently, Scuttlebot's API client is only available for node.js applications.

Built with git-ssb-web