Skip to content

poga/hyperfeed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hyperfeed

NPM Version JavaScript Style Guide

Hyperfeed is a self-archiving P2P live feed. You can convert any RSS/ATOM/RDF feed to a P2P live update publishing network.

  • Self-archiving: Items and it's linked page will be archived within hyperfeed.
  • Decentralized: Feed contents can still be distributed between readers even if the original host is down.
  • Live: No need to poll the original feed. Updates will be pushed to you.
npm install hyperfeed

Synopsis

Publish your RSS feed through hyperfeed:

const request = require('request')
const hyperfeed = require('hyperfeed')
const hyperdrive = require('hyperdrive')
const swarm = require('hyperdiscovery')

const url = 'https://medium.com/feed/google-developers'

var archive = hyperdrive('./feed')
var feed = hyperfeed(archive)
feed.ready(() => {
  swarm(archive)
  console.log(feed.key.toString('hex'))
  feed.update(request(url), (err) => {
    console.log('feed imported')
  })
})

Now you can replicate the hyperfeed through a p2p network:

const Hyperfeed = require('hyperfeed')
const swarm = require('hyperdiscovery')
const hyperdrive = require('hyperdrive')

var archive = hyperdrive('./anotherFeed', '<KEY FROM ABOVE>')
var feed = hyperfeed(archive)
swarm(archive) // load the feed from the p2p network
feed.list((err, entries) => {
  console.log(entries) // all entries in the feed (include history entries)
})

API

var feed = hyperfeed(archive, [opts])

Create a new Hyperfeed instance. opts includes:

{
  scrapLink: true // set to false to stop archiving linked page for each feed item
}

feed.key

The public key identifying the feed.

feed.discoveryKey

A key derived from the public key that can be used to discovery other peers sharing this feed.

feed.meta

The metadata of the feed.

feed.ready(cb)

Wait for feed is fully ready and all properties has been populated.

feed.update(feedStream, cb(err, feed))

import a RSS feed into feed. Accept a stream.

feed.setMeta(metadataObject, cb(err))

Set feed's metadata.

feed.list(cb(err, entries))

List archived item in the feed.

feed.save(item, [scrappedData], cb(err))

Save a new feed item. Check https://github.com/jpmonette/feed for item detail.

If you already have scrapped data for the given item, you can pass it to scrappedData to avoid redundant requests.

feed.export(count, cb(err, rss))

Export a RSS-2.0 Feed containing latest count items.

License

The MIT License