git ssb

2+

cel / scuttlebot.io



Tree: 338e0ca3c8de6d685bca80161faf219c20acd76d

Files: 338e0ca3c8de6d685bca80161faf219c20acd76d / 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