Go to file
spikecodes 6c7188a1b9
Prevent pushing of Cargo.lock
2021-03-08 18:50:03 -08:00
.github Specify Ubuntu version of workflow 2021-02-24 18:44:50 +00:00
src Optimize type casting 2021-03-08 18:49:06 -08:00
static Fix #140 2021-02-27 13:34:02 -08:00
templates Switch favicon to ico 2021-02-26 12:04:11 -08:00
.gitignore Prevent pushing of Cargo.lock 2021-03-08 18:50:03 -08:00
CODEOWNERS Add CODEOWNERS file 2021-02-15 13:46:07 -08:00
Cargo.toml Update dependencies 2021-03-08 16:30:34 -08:00
Dockerfile Added multi-staged container build and a user (#134) 2021-02-24 19:17:36 +00:00
LICENSE Publish Metadata Files 2020-10-25 13:48:44 -07:00
README.md Update himiko instances' location 2021-03-05 18:39:31 +00:00
rustfmt.toml Templatize redirects 2021-02-13 15:02:38 -08:00

README.md

Libreddit

An alternative private front-end to Reddit

screenshot


10 second pitch: Libreddit is a portmanteau of "libre" (meaning freedom) and "Reddit". It is a private front-end like Invidious but for Reddit. Browse the coldest takes of r/unpopularopinion without being tracked.

  • 🚀 Fast: written in Rust for blazing fast speeds and memory safety
  • ☁️ Light: no JavaScript, no ads, no tracking, no bloat
  • 🕵 Private: all requests are proxied through the server, including media
  • 🔒 Secure: strong Content Security Policy prevents browser requests to Reddit

BTC: bc1qwyxjnafpu3gypcpgs025cw9wa7ryudtecmwa6y

XMR: 45FJrEuFPtG2o7QZz2Nps77TbHD4sPqxViwbdyV9A6ktfHiWs47UngG5zXPcLoDXAc8taeuBgeNjfeprwgeXYXhN3C9tVSR


Jump to...


Instances

Feel free to open an issue to have your selfhosted instance listed here!

Website Country Cloudflare
libredd.it (official) 🇺🇸 US
libreddit.spike.codes (official) 🇺🇸 US
libreddit.dothq.co 🇺🇸 US
libreddit.kavin.rocks 🇮🇳 IN
libreddit.himiko.cloud 🇫🇮 FI
libreddit.bcow.xyz 🇺🇸 US
spjmllawtheisznfs7uryhxumin26ssv2draj7oope3ok3wuhy43eoyd.onion 🇮🇳 IN
fwhhsbrbltmrct5hshrnqlqygqvcgmnek3cnka55zj4y7nuus5muwyyd.onion 🇩🇪 DE
libreddit.himiko7xl2skojc6odi7hykl626gt4qki3vxdbv33u2u3af76d6k32ad.onion 🇫🇮 FI
dflv6yjt7il3n3tggf4qhcmkzbti2ppytqx3o7pjrzwgntutpewscyid.onion 🇺🇸 US

A checkmark in the "Cloudflare" category here refers to the use of the reverse proxy, Cloudflare. The checkmark will not be listed for a site which uses Cloudflare DNS but rather the proxying service which grants Cloudflare the ability to monitor traffic to the website.


About

Find Libreddit on 💬 Matrix, 🐋 Docker, :octocat: GitHub, and 🦊 GitLab.

Built with

  • Rust - Programming language
  • Tide - Web server
  • Askama - Templating engine
  • Surf - HTTP client

Info

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 for YouTube, Nitter for Twitter, and Bibliogram for Instagram.

Libreddit currently implements most of Reddit's (signed-out) functionalities but still lacks a few features.

How does it compare to Teddit?

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.

If you are looking to compare, the biggest differences I have noticed are:


Comparison

This section outlines how Libreddit compares to Reddit.

Speed

Lasted tested Jan 17, 2021.

Results from Google Lighthouse (Libreddit Report, Reddit Report).

Libreddit Reddit
Requests 20 70
Resource Size (card ui) 1,224 KiB 1,690 KiB
Time to Interactive 1.5 s 11.2 s

Privacy

Reddit

Logging: According to Reddit's privacy policy, they "may [automatically] log information" including:

  • 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

Location: The same privacy policy goes on to describe location data may be collected through the use of:

  • GPS (consensual)
  • Bluetooth (consensual)
  • Content associated with a location (consensual)
  • Your IP Address

Cookies: Reddit's cookie notice documents the array of cookies used by Reddit including/regarding:

  • Authentication
  • Functionality
  • Analytics and Performance
  • Advertising
  • Third-Party Cookies
  • Third-Party Site

Libreddit

For transparency, I hope to describe all the ways Libreddit handles user privacy.

Logging: In production (when running the binary, hosting with docker, or using the official instances), Libreddit logs when Reddit is ratelimiting Libreddit and when Reddit's JSON responses can't be parsed. When debugging (running from source without --release), Libreddit logs post IDs and URL paths fetched to aid with troubleshooting.

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.

Cookies: Libreddit uses optional cookies to store any configured settings in the settings menu. This is not a cross-site cookie and the cookie holds no personal data, only a value of the possible layout.

Hosting: The official instances are hosted on 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.


Installation

1) Cargo

Make sure Rust stable is installed along with cargo, Rust's package manager.

cargo install libreddit

2) Docker

Deploy the Docker image of Libreddit:

docker run -d --name libreddit -p 8080:8080 spikecodes/libreddit

Deploy using a different port (in this case, port 80):

docker run -d --name libreddit -p 80:8080 spikecodes/libreddit

3) AUR

For ArchLinux users, Libreddit is available from the AUR as libreddit-git.

yay -S libreddit-git

4) 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.

5) Repl.it

Note: Repl.it is a free option but they are not private and will monitor server usage to prevent abuse. If you need a free and easy setup, this method may work best for you.

  1. Create a Repl.it account (see note above)
  2. Visit the official Repl 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.


Deployment

Once installed, deploy Libreddit to 0.0.0.0:8080 by running:

libreddit

Proxying using NGINX

NOTE If you're proxying Libreddit through a NGINX Reverse Proxy, add

proxy_http_version 1.1;

to your NGINX configuration file above your proxy_pass line.

Building

git clone https://github.com/spikecodes/libreddit
cd libreddit
cargo run