npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

deluge-cleaner

v1.1.0

Published

Cleans my deluge torrents

Downloads

7

Readme

Deluge cleaner

Simple node script for removing torrents(+ data) in deluge based on age and seed ratio. Built with the assumption it's cleaning up torrents added by Sonarr & Radarr. So it assumes "sonarr-imported" & "radarr-imported" flags are being added. Shouldn't be hard to put that behind another prompt just havent felt the need to for myself personally. But happy to accept PR's.

Starr apps / deluge setup

  1. Setup Extractor+ in deluge to extract into the torrents directory and to delete extracted files after ~3 days.
  2. Setup Starr apps to use hardlinks on import and add a "sonarr-imported" or "radarr-imported" label to deluge on import.
  3. Setup Starr apps to stop monitoring when a delete is detected
  4. Now you can let Starr apps and Deluge manage their respective parts. With this setup removing torrents from deluge should not result in the media library shrinking.
  5. If disk space is required, start by cleaning up deluge torrents with high age and or ratio using this tool
  6. If more is required run the tools in https://github.com/ngovil21/Plex-Cleaner to remove media from your library
  7. With this setup the remove controls in Plex can also be used for freeing up disk space.

Use

The package is published to npm and can be used with npx

npx deluge-cleaner clean --delugeUrl #DELUGEURL# --delugePassword #DELUGEPASSWORD#

Or if you wanna be real fancy use 1password to manage the secrets:

npx deluge-cleaner clean --delugeUrl $(op read op://betty/deluge/website) --delugePassword $( op read op://betty/deluge/password)

Local running

For the above mentioned usecase this tool already works quite well. To use it first check out this repo and install dependencies:

git clone https://github.com/marcodejongh/deluge-cleaner.git
nvm use
yarn

then add a .delugecleanerrc file:

{
  "deluge": {
    "baseUrl": "delugeEndpoint",
    "password": "password",
  }
}

OR just pass that config in as flags:

 NODE_OPTIONS="--loader ts-node/esm" node src/cli.ts clean --delugeUrl delugeEndpoint --delugePassword password

OR if you've recently gotten obsessed with not littering api keys everywhere and you use 1Password. Use 1password CLI to store the secrets and run:

node --loader ts-node/esm src/cli.ts clean --delugeUrl $(op read op://dev/deluge/website) --delugePassword $( op read op://dev/deluge/password)

Where the dev vault is where the deluge secrets are stored.

Then to clean up run:

 NODE_OPTIONS="--loader ts-node/esm" node src/cli.ts clean

The clean tool is interactive and asks for final confirmation at the end. Once confirmed, the tool will use Deluge's rest api for removing torrents + data to perform the cleanup.

Library cleanup

For media library cleanup use: https://github.com/ngovil21/Plex-Cleaner