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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vajira-torrent-downloader

v1.0.6

Published

An automated pipeline tracker utilities system that converts public torrent files into magnets, loads them to Seedr cloud, extracts the streaming links down onto disk, and automatically purges the bucket workspace.

Readme

🧲 vajira-torrent-downloader

npm version License: ISC

An automated utility package to programmatically stream cloud storage assets down via automated conversions using backend Seedr endpoints.


📥 Installation

npm install vajira-torrent-downloader

📈 Example code



const { downloadSeedrTorrent } = require('vajira-torrent-downloader');

async function testPackage() {
    console.log("🚀 Initializing Seedr Automated Pipeline Test...");

    // Target video torrent file URL
    const targetTorrentUrl = "https://yts.bz/torrent/download/2C29E0910641016B7F8286F8F8F3090946FB4A53";

    // Configuration Settings Mapping
    const config = {
        email: "put your seedr email",
        password: "put your seedr password"
    };

    try {
        console.log("🔄 Step 1: Sending URL and credentials to package module...");
        
        // Double check that the function was imported properly before running it
        if (typeof downloadSeedrTorrent !== 'function') {
            throw new Error("Import verification failed. 'downloadSeedrTorrent' is still undefined inside 'vajira-torrent-downloader' exports.");
        }

        const result = await downloadSeedrTorrent(targetTorrentUrl, config);

        if (result) {
            console.log("\n==============================================");
            console.log("🎉 TEST SUCCESSFUL!");
            console.log("==============================================");
            console.log(`📌 File Name: ${result.fileName}`);
            console.log(`📌 Seedr URL: ${result.fileUrl}`);
            console.log(`📌 Folder ID: ${result.folderId}`);
            console.log("==============================================\n");
        } else {
            console.log("❌ Test finished but returned no object layout.");
        }

    } catch (error) {
        console.error("\n💥 Pipeline Test Encountered A Critical Failure:");
        console.error(`Error Message: ${error.message}`);
    }
}

testPackage();

📈 Output Search

🚀 Initializing Seedr Automated Pipeline Test...
🔄 Step 1: Sending URL and credentials to package module...
🔄 Step 1: Converting Torrent URL into a dynamic Magnet link...
🎯 Instant Extraction: Found InfoHash [2C29E0910641016B7F8286F8F8F3090946FB4A53]. Bypassing external networks...
🔒 Step 2: Logging into Seedr system endpoints...
☁️ Step 3: Pushing magnet hash to Seedr Cloud...
⏳ Step 4: Monitoring backend server cache balance...
⏳ Waiting for cloud distribution to hit 100% (Attempt 1/20)...
✅ Cache Hit! Target found: [The Movie Title Name].

==================================================
TITLE: The Movie Title Name
DIRECT URL: https://direct-download-link-from-seedr.com/stream/file...
==================================================

⏱️ Waiting exactly 10 seconds before deleting file from Seedr cloud...
🧹 Step 5: Wiping video directory tree from Seedr cloud balance...

==============================================
🎉 TEST SUCCESSFUL!
==============================================
📌 File Name: The Movie Title Name
📌 Seedr URL: https://direct-download-link-from-seedr.com/stream/file...
📌 Folder ID: 987654321
==============================================