import { Component } from 'inferno'; import { repoUrl } from '../utils'; export class Home extends Component { render() { return (
{this.onboard()}
) } onboard() { return (

Torrents.csv is a collaborative git repository of torrents, consisting of a single, searchable torrents.csv file. Its initially populated with a January 2017 backup of the pirate bay, and new torrents are periodically added from various torrents sites. It comes with a self-hostable webserver, a command line search, and a folder scanner to add torrents.

Torrents.csv will only store torrents with at least one seeder to keep the file small, will be periodically purged of non-seeded torrents, and sorted by seeders descending.

To request more torrents, or add your own, go here.

Made with Rust, ripgrep, Actix, Inferno, and Typescript.

); } }