git ssb

2+

cel / scuttlebot.io



Tree: c0c9508d732a53b79ef287fd75268ac0d50dda3a

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

626 bytesRaw

Messages ordered by timestamp

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-publish, use 'createFeedStream'.

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

Important note: message timestamps are set by the wall clock of the publisher, and may be incorrect. The "feed" stream should only be used when order is not important.

→ createFeedStream API

Built with git-ssb-web