libreddit/README.md

209 lines
7.7 KiB
Markdown
Raw Normal View History

2020-10-25 21:48:44 +01:00
# Libreddit
> An alternative private front-end to Reddit
2020-12-22 06:40:06 +01:00
Libre + Reddit = [Libreddit](https://libredd.it)
2020-10-25 21:48:44 +01:00
- 🚀 Fast: written in Rust for blazing fast speeds and safety
2020-12-22 06:52:50 +01:00
- ☁️ Light: no JavaScript, no ads, no tracking
2020-11-23 05:22:51 +01:00
- 🕵 Private: all requests are proxied through the server, including media
2020-12-12 05:36:06 +01:00
- 🔒 Safe: does not rely on Reddit OAuth or require a Reddit API Key
2020-10-25 21:48:44 +01:00
- 📱 Responsive: works great on mobile!
2020-12-22 06:51:18 +01:00
Like [Invidious](https://github.com/iv-org/invidious) but for Reddit. Browse the coldest takes of [r/unpopularopinion](https://libredd.it/r/unpopularopinion) without being [tracked](#reddit).
2020-12-22 06:40:06 +01:00
## Contents
- [Screenshot](#screenshot)
2020-12-22 17:45:21 +01:00
- [Instances](#instances)
2020-12-22 06:40:06 +01:00
- [About](#about)
- [Elsewhere](#elsewhere)
- [Info](#info)
- [In Progress](#in-progress)
- [Teddit Comparison](#how-does-it-compare-to-teddit)
- [Comparison](#comparison)
- [Speed](#speed)
- [Privacy](#privacy)
- [Installation](#installation)
- [Cargo](#a-cargo)
- [Docker](#b-docker)
- [AUR](#c-aur)
- [GitHub Releases](#d-github-releases)
2020-12-22 18:11:03 +01:00
- [Repl.it](#e-replit)
2020-12-22 06:40:06 +01:00
- Developing
- [Deployment](#deployment)
- [Building](#building)
2020-10-25 21:48:44 +01:00
## Screenshot
2020-12-21 04:05:44 +01:00
![](https://i.ibb.co/1RyKrBz/libreddit-rust.png)
2020-10-25 21:48:44 +01:00
2020-12-22 17:45:21 +01:00
## Instances
Feel free to [open an issue](https://github.com/spikecodes/libreddit/issues/new) to have your [selfhosted instance](#deployment) listed here!
2020-12-23 22:34:05 +01:00
### Official
- [libredd.it](https://libredd.it)
- [libreddit.spike.codes](https://libreddit.spike.codes)
### Community
- [libreddit.dothq.co](https://libreddit.dothq.co/)
2020-12-22 17:45:21 +01:00
2020-12-05 18:53:41 +01:00
## About
2020-12-12 17:57:23 +01:00
### Elsewhere
Find Libreddit on...
- 💬 Matrix: [#libreddit:matrix.org](https://matrix.to/#/#libreddit:matrix.org)
- 🐋 Docker: [spikecodes/libreddit](https://hub.docker.com/r/spikecodes/libreddit)
- :octocat: GitHub: [spikecodes/libreddit](https://github.com/spikecodes/libreddit)
- 🦊 GitLab: [spikecodes/libreddit](https://gitlab.com/spikecodes/libreddit)
### Info
2020-12-22 06:51:18 +01:00
Libreddit hopes to provide an easier way to browse Reddit, without the ads, trackers, and bloat. Libreddit was inspired by other alternative front-ends to popular services such as [Invidious](https://github.com/iv-org/invidious) for YouTube, [Nitter](https://github.com/zedeus/nitter) for Twitter, and [Bibliogram](https://sr.ht/~cadence/bibliogram/) for Instagram.
2020-12-05 18:53:41 +01:00
Libreddit currently implements most of Reddit's functionalities but still lacks a few features that are being worked on below.
### In Progress
- Searching
### How does it compare to Teddit?
2020-12-19 01:24:09 +01:00
Teddit is another awesome open source project designed to provide an alternative frontend to Reddit. There is no connection between the two and you're welcome to use whichever one you favor. Competition fosters innovation and Teddit's release has motivated me to build Libreddit into an even more polished product.
2020-12-05 18:53:41 +01:00
If you are looking to compare, the biggest differences I have noticed are:
- Libreddit is themed around Reddit's redesign whereas Teddit appears to stick much closer to Reddit's old design. This may suit some users better as design is always subjective.
2020-12-22 17:45:21 +01:00
- Libreddit is written in [Rust](https://www.rust-lang.org) for speed and memory safety. It uses [Actix Web](https://actix.rs), which was [benchmarked as the fastest web server for single queries](https://www.techempower.com/benchmarks/#hw=ph&test=db).
2020-12-05 18:53:41 +01:00
- Unlike Teddit (at the time of writing this), Libreddit does not require a Reddit API key to host.
2020-10-25 21:48:44 +01:00
2020-12-22 06:53:54 +01:00
## Comparison
This section outlines how Libreddit compares to Reddit.
2020-12-22 06:40:06 +01:00
### Speed
Lasted tested December 21, 2020.
Results from Google Lighthouse ([Libreddit Report](https://lighthouse-dot-webdotdevsite.appspot.com/lh/html?url=https%3A%2F%2Flibredd.it), [Reddit Report](https://lighthouse-dot-webdotdevsite.appspot.com/lh/html?url=https%3A%2F%2Fwww.reddit.com%2F)).
| | Libreddit | Reddit |
|---------------------|---------------|-----------|
| Requests | 22 | 70 |
| Resource Size | 135 KiB | 2,222 KiB |
| Time to Interactive | **1.7 s** | **11.5 s**|
### Privacy
#### Reddit
2020-12-22 17:45:21 +01:00
**Logging:** According to Reddit's [privacy policy](https://www.redditinc.com/policies/privacy-policy), they "may [automatically] log information" including:
2020-12-22 06:40:06 +01:00
- IP address
- User-agent string
- Browser type
- Operating system
- Referral URLs
- Device information (e.g., device IDs)
- Device settings
- Pages visited
- Links clicked
- The requested URL
- Search terms
2020-12-22 17:45:21 +01:00
**Location:** The same privacy policy goes on to describe location data may be collected through the use of:
2020-12-22 06:40:06 +01:00
- GPS (consensual)
- Bluetooth (consensual)
- Content associated with a location (consensual)
- Your IP Address
2020-12-22 17:45:21 +01:00
**Cookies:** Reddit's [cookie notice](https://www.redditinc.com/policies/cookies) documents the array of cookies used by Reddit including/regarding:
2020-12-22 06:40:06 +01:00
- Authentication
- Functionality
- Analytics and Performance
- Advertising
- Third-Party Cookies
- Third-Party Site
2020-12-22 06:51:18 +01:00
#### Libreddit
2020-12-22 06:40:06 +01:00
2020-12-22 17:45:21 +01:00
For transparency, I hope to describe all the ways Libreddit handles user privacy.
2020-12-22 06:40:06 +01:00
2020-12-22 17:45:21 +01:00
**Logging:** In production (when running the binary, hosting with docker, or using the official instances), Libreddit logs nothing. When debugging (running from source without `--release`), Libreddit logs post IDs fetched to aid troubleshooting but nothing else.
2020-12-22 06:40:06 +01:00
2020-12-22 18:11:03 +01:00
**DNS:** Both official domains (`libredd.it` and `libreddit.spike.codes`) use Cloudflare as the DNS resolver. Though, the sites are not proxied through Cloudflare meaning Cloudflare doesn't have access to user traffic.
2020-10-25 21:48:44 +01:00
2020-12-22 17:45:21 +01:00
**Cookies:** Libreddit uses no cookies currently but eventually, I plan to add a configuration page where users can store an optional cookie to save their preferred theme, default sorting algorithm, or default layout.
2020-12-05 18:53:41 +01:00
2020-12-22 18:11:03 +01:00
**Hosting:** The official instances (`libredd.it` and `libreddit.spike.codes`) are hosted on [Repl.it](https://repl.it/) which monitors usage to prevent abuse. I can understand if this invalidates certain users' threat models and therefore, selfhosting and browsing through Tor are welcomed.
2020-10-25 21:48:44 +01:00
## Installation
2020-11-23 04:21:07 +01:00
2020-10-26 05:19:04 +01:00
### A) Cargo
2020-10-25 21:48:44 +01:00
Make sure Rust stable is installed along with `cargo`, Rust's package manager.
```
2020-10-26 05:19:04 +01:00
cargo install libreddit
2020-10-25 21:48:44 +01:00
```
### B) Docker
Deploy the Docker image of Libreddit:
```
2020-10-26 05:03:59 +01:00
docker run -d --name libreddit -p 8080:8080 spikecodes/libreddit
2020-10-25 21:48:44 +01:00
```
Deploy using a different port (in this case, port 80):
```
2020-10-26 05:03:59 +01:00
docker run -d --name libreddit -p 80:8080 spikecodes/libreddit
2020-10-25 21:48:44 +01:00
```
### C) AUR
For ArchLinux users, Libreddit is available from the AUR as [`libreddit-git`](https://aur.archlinux.org/packages/libreddit-git).
2020-10-25 21:48:44 +01:00
Install:
```
yay -S libreddit-git
```
### D) GitHub Releases
If you're on Linux and none of these methods work for you, you can grab a Linux binary from [the newest release](https://github.com/spikecodes/libreddit/releases/latest).
2020-12-22 06:52:50 +01:00
Currently, Libreddit does not have Windows or macOS binaries but those will be available soon.
2020-12-22 18:11:03 +01:00
### E) Repl.it
2020-12-22 18:15:55 +01:00
**Note:** Repl.it is a free option but they are *not* private and are monitor server usage to prevent abuse. If you really need a free and easy setup, this method may work best for you.
2020-12-22 18:11:03 +01:00
1. Create a Repl.it account (see note above)
2. Visit [the official Repl](https://repl.it/@spikethecoder/libreddit) and fork it
3. Hit the run button to download the latest Libreddit version and start it
In the web preview (defaults to top right), you should see your instance hosted where you can assign a [custom domain](https://docs.repl.it/repls/web-hosting#custom-domains).
2020-12-22 06:40:06 +01:00
## Deployment
Once installed, deploy Libreddit (unless you're using Docker) by running:
```
libreddit
```
Specify a custom address for the server by passing the `-a` or `--address` argument:
```
libreddit --address=0.0.0.0:8111
```
2020-11-24 03:25:22 +01:00
To disable the media proxy built into Libreddit, run:
```
libreddit --no-default-features
```
2020-12-22 06:40:06 +01:00
## Building
2020-10-26 05:19:04 +01:00
```
git clone https://github.com/spikecodes/libreddit
cd libreddit
cargo run
2020-11-25 04:27:12 +01:00
```