Popularity
1.3
Stable
Activity
2.0
-
27
3
6
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.
-
NewsBlur
NewsBlur is a personal news reader that brings people together to talk about the world. A new sound of an old instrument. -
RSS Monster
Google Reader inspired self-hosted RSS reader written in VueJS with an Express NodeJS backend. RSSMonster is compatible with the Fever API. -
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. -
Screaming Liquid Tiger
DISCONTINUED. 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. -
html2rss-web
🕸 Generates RSS feeds of any website & serves to the web! Automatic scraping. Ready to use configs. Write your own. Rolling Docker releases for speedy updates. -
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. -
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.
Nutrient – The #1 PDF SDK Library, trusted by 10K+ developers
Other PDF SDKs promise a lot - then break. Laggy scrolling, poor mobile UX, tons of bugs, and lack of support cost you endless frustrations. Nutrient’s SDK handles billion-page workloads - so you don’t have to debug PDFs. Used by ~1 billion end users in more than 150 different countries.
Promo
www.nutrient.io

* 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> |