git ssb

2+

cel / scuttlebot.io



Tree: 18ca2b47b86cd361c03c92c0682500c5fa00451f

Files: 18ca2b47b86cd361c03c92c0682500c5fa00451f / tmpl / docs / basics / create-secondary-users.md

506 bytesRaw

Create secondary users

By default, Scuttlebot uses a "master" identity/feed, which sbot.publish() will append new messages to. If you want to publish to additional feeds, you can load the keypair and then use this library to do so.

var ssbFeed = require('ssb-feed')
var ssbKeys = require('ssb-keys')

// create the new feed
var alice = ssbFeed(sbot, ssbKeys.generate())

// Post to alice's feed
alice.publish({
  type: 'post',
  text: 'hello world, I am alice.'
}, function (err) { ... })

Built with git-ssb-web