Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Rss Bridge | 6,409 | 6 days ago | April 06, 2018 | 150 | unlicense | PHP | ||||
The RSS feed for websites missing it | ||||||||||
V2 | 5,611 | 10 | 3 days ago | 75 | October 15, 2023 | 265 | apache-2.0 | Go | ||
Minimalist and opinionated feed reader | ||||||||||
Newsboat | 2,638 | 2 days ago | 345 | mit | C++ | |||||
An RSS/Atom feed reader for text terminals | ||||||||||
Rssguard | 1,196 | 11 hours ago | 113 | gpl-3.0 | C++ | |||||
Feed reader which supports RSS/ATOM/JSON and many web-based feed services. | ||||||||||
Quiterss | 854 | a year ago | 379 | other | C++ | |||||
Free news feeds reader | ||||||||||
Newsbeuter | 795 | 4 years ago | 1 | February 27, 2018 | 201 | mit | C++ | |||
Newsbeuter is an open-source RSS/Atom feed reader for text terminals. | ||||||||||
Liferea | 776 | a month ago | 99 | gpl-2.0 | C | |||||
Liferea (Linux Feed Reader), a news reader for GTK/GNOME | ||||||||||
News | 742 | 12 hours ago | 27 | agpl-3.0 | PHP | |||||
:newspaper: RSS/Atom feed reader | ||||||||||
Feeder | 703 | a day ago | 11 | gpl-3.0 | Kotlin | |||||
Android RSS reader app | ||||||||||
Gorss | 411 | 8 months ago | 2 | March 23, 2023 | 9 | mit | Go | |||
Go Terminal Feed Reader |
Newsboat is an RSS/Atom feed reader for the text console. It's an actively maintained fork of Newsbeuter.
A feed reader pulls updates directly from sites like blogs and news agencies, and lets you review them in a single interface. Many times, the feed includes the full text of the update, so you don't even need to start a web browser! You can learn more about feed readers on Wikipedia.
You can download the latest version of Newsboat from the official site: https://newsboat.org/
Alternatively, you can check out the latest version from the Git repository:
$ git clone https://github.com/newsboat/newsboat.git
Newsboat depends on a number of libraries, which need to be installed before Newsboat can be compiled.
curl --version
; most often that's
OpenSSL, sometimes GnuTLS, or maybe something else.Developers will also need:
cargo install xtr
)regenerate-parser
target.There are numerous ways:
install from your distribution's repository (a lot of distros have a package);
install via Snap:
$ sudo snap install newsboat
Our snap only supports xdg-open
as the browser, and you
can't run arbitrary scripts for rendering and bookmarking. The reason is
strict confinement; if we disabled it, the snap would be no better than
a distribution's package;
build from source with Docker. Note that the resulting binary might not run outside of that same Docker container if your system doesn't have all the necessary libraries, or if their versions are too old;
build from source in a chroot: to avoid polluting your system with developer
packages, or to avoid upgrading, you might use a tool like
debootstrap
to create an isolated
environment. Once that's done, just build from source as outlined in the
next item;
build from source.
Install everything that's listed in the "Dependencies" section above. Make
sure to install the header files as well (on Debian and derivatives, headers
are in -dev
packages, e.g. libsqlite3-dev
.)
Cross-compilers need to set CARGO_BUILD_TARGET
; see cargo
documentation.
Then compile and install with:
$ make # pass -jN to use N CPU cores, e.g. -j8
$ sudo make install # install everything under /usr/local
To install to a different directory, pass prefix
like so: sudo make prefix=/opt/newsboat install
.
To uninstall, run sudo make uninstall
.
See CONTRIBUTING.md
Newsboat is licensed under the MIT license; see the LICENSE file. Logo by noobilanderi, licensed under CC BY 4.0.