hackernews-TUI

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:

Why hackernews-TUI?

If you are either

This application is the right tool for you :muscle:

Table of Contents

Install

Dependencies

Mercury Parser

To enable viewing a web page in reader mode with Article View, install mercury-parser globally by running

```shell

using yarn

yarn global add @postlight/mercury-parser

or using npm

npm install -g @postlight/mercury-parser ```

Using cargo

Install the latest version from crates.io

Run cargo install hackernews_tui to install the application as a binary.

Build from the master branch

Run

```shell

git clone https://github.com/aome510/hackernews-TUI.git

cd hackernews-TUI

cargo build --release

```

to build the application, then run

```shell

./target/release/hackernews_tui

```

to run the application

Arch Linux

Run yay -S hackernews_tui to install the application as an AUR package.

NetBSD

Using the package manager

```shell

pkgin install hackernews-tui

```

Building from source

```shell $ cd /usr/pkgsrc/www/hackernews-tui

make install

```

Examples

Demo

List of demo videos:

Story View

Example of a Story View - Front Page

Article View

Example of a Story View - Front Page

Search View

Example of a Search View

Comment View

Example of a Comment View

Default Shortcuts

In each View, press ? to see a list of supported keyboard shortcuts and their functionalities:

Example of a Help View

Global key shortcuts

Key shortcuts for each View

Story View shortcuts

Article View shortcuts

Link dialog shortcuts

Comment View shortcuts

Search View shortcuts

In 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:

Navigation mode also supports a subset of StoryView's key shortcuts.

Configuration

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.

User-defined shortcuts

Shortcuts in each View are full customizable, for futher 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.

Debug

Run

shell RUST_LOG=debug hackernews_tui 2> log.txt

to view the application's log in log.txt file.

Roadmap