Skip to content

giupas/rss-pipes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rss-pipes

RSS feed aggregator by Node.js

About

This is yet another feed aggregator primary for JavaScript users. Filters are written in JavaScript and modifiable through web browsers.

Access

Please visit:

http://rss-pipes.herokuapp.com/

TODOs

  • Garbage collection of filters (that are not used for a week)
  • Cache control

FILTERS

An example filter (shorten descritpion and strip tags):

function rssPipesFilterFunction(articles) {
  articles.forEach(function(article) {
    article.description = article.description.replace(/(<([^>]+)>)/ig,"");
    if (article.description.length>150)
      article.description=article.description.substr(0,150)+"...";
  });
  return articles;
}

About

RSS feed aggregator by Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 94.8%
  • HTML 3.1%
  • CSS 2.1%