Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kingdido999/lite-hacker-news
WIP: Blazing fast Hacker News client.
https://github.com/kingdido999/lite-hacker-news
hackernews rust
Last synced: 2 months ago
JSON representation
WIP: Blazing fast Hacker News client.
- Host: GitHub
- URL: https://github.com/kingdido999/lite-hacker-news
- Owner: kingdido999
- License: mit
- Created: 2018-09-11T13:02:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-07T07:54:57.000Z (almost 6 years ago)
- Last Synced: 2024-11-02T03:32:59.325Z (2 months ago)
- Topics: hackernews, rust
- Language: Rust
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-blazingly-fast - lite-hacker-news - WIP: Blazing fast Hacker News client. (Rust)
README
# Lite Hacker News
As a heavy user of [Hacker News](https://news.ycombinator.com/), I've been wasting quite a lot of time waiting for articles to be opened and loaded before I can consume them. The goal of this project is to build a blazing fast Hacker News reader with articles fully cached while learning some [Rust](https://www.rust-lang.org).
## TODO
- [x] Fetch top stories via [HackerNews API](https://github.com/HackerNews/API)
- [ ] Run a job to fetch and save stories in DB periodically
- [ ] Render top stories in HTML
- [ ] Load and cache the content of stories in client-side## Development
Create a `.env` file out of the example and modify username and password for your local [PostgreSQL](https://www.postgresql.org/) instance:
```bash
cp .env.example .env
```Start the project:
```bash
cargo run
```