hackernews_tui
is a Terminal UI to browse Hacker News with fully customizable and vim-like key bindings.
hackernews_tui
is written in Rust with the help of Cursive TUI library. It uses HN Algolia search APIs to get Hacker News data.
The application mainly consists of the following views:
Story View
displaying a list of HN stories. There are different kinds of Story View
depending on the tag
used to filter stories:
Front Page
: stories on the front-pageAll Stories
: all storiesAsk HN
: ask HN stories onlyShow HN
: show HN stories onlyJobs
: jobs stories onlyArticle View
displaying the content of a web article in reader mode.Comment View
displaying a list of comments in a story.Search View
displaying a search bar and a list of stories matching the search query.If you are either
This application is the right tool for you :muscle:
Run cargo install hackernews_tui
to install the application as a binary.
master
branchRun
```shell
```
to build the application, then run
```shell
```
to run the application
Run yay -S hackernews_tui
to install the application as an AUR package.
```shell
```
```shell $ cd /usr/pkgsrc/www/hackernews-tui
```
List of demo videos:
hackernews_tui v0.5.0
: demo general usage of Story View
, Search View
and Comment View
can be found herehackernews_tui v0.6.0-beta
: demo the usage of Article View
to read a web page in reader mode can be found hereIn each View
, press ?
to see a list of supported keyboard shortcuts and their functionalities:
?
: Open the help dialogesc
: Close a dialogC-q
: Quit the applicationC-p
: Go to the previous viewC-f
: Go to front page viewC-s
: Go to search viewC-z
: Go to all stories viewC-x
: Go to ask HN viewC-c
: Go to show HN viewC-v
: Go to jobs viewView
j
: Focus the next storyk
: Focus the previous story{story_id} g
: Focus the {story_id}-th storyenter
: Go the comment view associated with the focused storyo
: Open in browser the article associated with the focused storyO
: Open in article view the article associated with the focused storys
: Open in browser the focused storyn
: Go to the next pagep
: Go the previous paged
: Toggle sort by date/popularityk
: Scroll upj
: Scroll downu
: Scroll up half a paged
: Scroll down half a paget
: Scroll to topb
: Scroll to bottomo
: Open article in browser{link_id} f
: Open in browser {link_id}-th link{link_id} F
: Open in article view {link_id}-th linkl
: Open link dialogj
: Focus next linkk
: Focus previous linkf
: Open in browser the focused linkF
: Open in article view the focused linkj
: Focus the next commentk
: Focus the previous commentn
: Focus the next top level commentp
: Focus the previous top level commentl
: Focus the next comment with smaller or equal levelh
: Focus the previous comment with smaller or equal levelr
: Reload the comment view.up
: Scroll updown
: Scroll downpage_up
: Scroll up half a pagepage_down
: Scroll down half a pageo
: Open in browser the article associated with the discussed storyO
: Open in article view the article associated with the discussed storys
: Open in browser the discussed storyc
: Open in browser the focused comment{link_id} f
: Open in browser the {link_id}-th link in the focused comment{link_id} F
: Open in article view the {link_id}-th link in the focused commentIn SearchView
, there are two modes: Navigation
and Search
. The default mode is Search
.
Search
mode is similar to Vim's Insert mode, in which users can input the query string.
Navigation
mode allows the SearchView
to behave like a StoryView
with all StoryView
shortcuts enabled.
Key shortcuts:
i
: Enter Search
mode from Navigation
mode<esc>
: Enter Navigation
mode from Search
modeNavigation
mode also supports a subset of StoryView
's key shortcuts.
By default, the application will look for ~/.config/hn-tui.toml
as its configuration file.
You can specify the path by specifying the -c
or --config
argument when running the application:
shell
hackernews_tui -c ~/.config/hn-tui.toml
For further information about the config options, please refer to the example config file by running hackernews_tui --example-config
.
Note: all config options (as included in the example config file) are required. You can run
shell
hackernews_tui --example-config > ~/.config/hn-tui.toml
then modify the config options in ~/.config/hn-tui.toml
based on your preferences.
To enable viewing a web page in reader mode with Article View
, you must configure the article_parse_command
field in your configuration file:
```yaml
ArticleView
#
articleparsecommand = {command = "mercury-parser", options = ["--format", "markdown"]}
```
If you don't want to implement an article parser by your own, one way to configure article_parse_command
is to use mercury-parser
, a web parser tool that hackernews_tui
has been using by default since the version 0.6.0
. mercury-parser
is powerful and stable. However, in some cases, the text content it returns when parsing HTML code
tags has some weird indentations.
An alternative is to use article_md
, a CLI tool I wrote for parsing web article's content into a markdown format. Under the hood, it uses mozilla's readability, so the parsed text for HTML code
tags look nicer.
Shortcuts in each View
are fully customizable, for further information about the supported keys and the corresponding functionalities, please refer to the user-defined key bindings sections in the example config file by running hackernews_tui --example-config
.
It's possible to define a custom shortcut to switch between different kinds of StoryView
(front_page
, show_hn
, ask_hn
, etc) with stories filtered by HN Algolia's numericFilters
. An example of defining such a custom shortcut can be found under the Custom Keymap section of the example configuration file.
Run
shell
RUST_LOG=debug hackernews_tui 2> log.txt
to view the application's log in log.txt
file.
View
to read the linked story in reader mode on the terminal. A list of possible suggestion can be found here