Popularity
1.3
Growing
Activity
8.0
-
26
2
5
Programming language: TypeScript
Tags:
Rss
Self-hosted
Feed Readers
fulltextrssplz alternatives and similar software solutions
Based on the "Feed Readers" category.
Alternatively, view fulltextrssplz alternatives based on common mentions on social networks and blogs.
-
Winds
A Beautiful Open Source RSS & Podcast App Powered by Getstream.io -
NewsBlur
NewsBlur is a personal news reader that brings people together to talk about the world. A new sound of an old instrument. -
Stringer
A work-in-progress self-hosted, anti-social RSS reader. -
Selfoss
multipurpose rss reader, live stream, mashup, aggregation web application -
Sismics Reader
Free and open source feeds reader, including all major Google Reader features -
RSS Monster
Google Reader inspired self-hosted RSS reader written in VueJS with an Express NodeJS backend. RSSMonster is compatible with the Fever API. -
RSS2EMail
open-source tool for Windows, Mac OS and UNIX for getting news from RSS feeds in email -
Leed
Leed (contraction de Light Feed) est un agrégateur RSS libre et minimaliste qui permet la consultation de flux RSS de manière rapide et non intrusive. -
Reader-Self
Self-hosted rss reader (php / mysql or sqlite) - Google Reader alternative -
Screaming Liquid Tiger
Minimalistic podcast feed generator script for audiobooks, for use with Pocket Casts, Overcast and similar apps. -
Cacocloud
A simple, fast and secure PHP/AngularJS based feed and mail reader, password and bookmark manager. -
RSS Fulltext Proxy
Get full-text content for any RSS-feed. -
Goeland
An alternative to rss2email written in golang with many filters -
html2rss-web
🕸 Generates and delivers RSS feeds via HTTP. Docker image available! Create your own feeds or get started quickly with the included configs. -
gritttt-rss
Implements 'cancelled' sharing-features of Google Reader for the excellent open-source RSS-Reader TinyTiny-RSS: share any page on the web via a bookmarklet and show your shared items in a widget on any website you want. Also allow to import shared&starred articles from Google Reader. -
Creaky Coot
Minimalist and responsive RSS reader and links saver. -
Full-Text RSS
Extract article content from news sites and blogs and convert RSS feeds that contain only extracts of stories to full-text feeds. Developed by FiveFilters.org.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of fulltextrssplz or a related project?
README
fulltextrssplz
Make RSS full text.
Example
Full-text version of UN News: https://fulltextrssplz.whtsky.me/feed?url=https://news.un.org/feed/subscribe/en/news/all/rss.xml&format=RSS
Start Server
PaaS
with Docker
docker run --restart=always -p 127.0.0.1:3000:80 -e MAX_ITEMS_PER_FEED=5 -d ghcr.io/whtsky/fulltextrssplz:master
without Docker
# install dependencies
yarn
# build frontend codes
yarn build
# start in public mode -- everyone can use
yarn start
# start in protected mode -- only users with key can use
## generate key for signing url
yarn gen_key
KEYS=<your_key>[,<your_key_b>] yarn start
Usage
An example request looks like:
http://localhost:3000/feed?format=rss&url=<feed_url>[&sign=<your_sign>][&max_items=1]
Params are:
format
: Output in which format. Can berss
orjson
url
: URL to original feedsign
: required for protected mode. hexadecimal HMAC signature of the feed urlmax_items
: max items for this feed. Can't be greater thanMAX_ITEMS_PER_FEED
environment variable.
You can get sign using
yarn sign <your_key> <feed_url>
Environment Variables
name | description | default value |
---|---|---|
HOSTNAME | hostname HTTP server listens to | 0.0.0.0 |
PORT | port HTTP server listens to | 3000 |
KEYS | comma-seperated signing keys. Leave empty to run in public mode | <emtpy> |
MAX_ITEMS_PER_FEED | max items per feed | 3 |
CACHE_CONTROL_MAXAGE | Set max age in Cache-Control header. Use 0 to disable cache. |
1800 |
CACHE_MODE | redis for cache with redis, other values means disable cache |
<empty> |
REDIS_URL | URL for redis | <empty> |
CACHE_TTL | Cache TTL | <empty> |