git ssb

2+

cel / scuttlebot.io



Tree: c0c9508d732a53b79ef287fd75268ac0d50dda3a

Files: c0c9508d732a53b79ef287fd75268ac0d50dda3a / tmpl / docs / advanced / feed-receive-time-sort.md

578 bytesRaw

Messages ordered by receive-time

You can fetch all of the messages in your Scuttlebot DB, merged into one stream. To fetch them ordered by the timestamp at time-of-download, use 'createLogStream'.

var pull = require('pull-stream')
pull(
  sbot.createLogStream({ reverse: true }),
  pull.collect(function (err, msgs) { ... })
)
sbot log --reverse

The receive time of messages will differ for each user. The "log" stream's order will never be the same between two devices.

→ createLogStream API

Built with git-ssb-web