git ssb

2+

cel / scuttlebot.io



Tree: 2b3708ff390cc334653a3a9ff0f511f866423af7

Files: 2b3708ff390cc334653a3a9ff0f511f866423af7 / 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