DownloadViewarr

image

Visits Docker Pulls Clones Reddit Subscribers Discord Chat

Download Viewarr

Download Viewarr is a Node.js application designed to fetch and display download queues for Radarr and Sonarr. It provides a simple and user-friendly interface to view movies and TV show download queues via a web page.

Docker Image

docker pull pir8radio/downloadviewarr

Features

Screenshots

** Simulated images, of course…

Installation

  1. Clone the repository:

    git clone https://github.com/pir8radio/DownloadViewarr.git
    cd DownloadViewarr
    
  2. Install dependencies:

    npm install
    
  3. Configure the settings in the DownloadViewarr.js file or an env file:

/*==================================== SETTINGS =====================================*/

// RADARR SERVER SETTINGS
const DEFAULT_RADARR_SERVER_IP = '127.0.0.1'					// Radarr server IP/URL
const DEFAULT_RADARR_SERVER_PORT = 7878						// Radarr server port
const DEFAULT_RADARR_API_KEY = '1234abcdxxxxxxxxxxxxxxxxxxxxxxxx'		// Radarr API Key

// SONARR SERVER SETTINGS
const DEFAULT_SONARR_SERVER_IP = '127.0.0.1'					// Sonarr server IP/URL
const DEFAULT_SONARR_SERVER_PORT = 8989						// Sonarr server port
const DEFAULT_SONARR_API_KEY = '1234abcdxxxxxxxxxxxxxxxxxxxxxxxx'		// Sonarr API Key

// DOWNLOAD VIEWARR SETTINGS
const DEFAULT_SERVER_PORT = 8888						// Port to view download status page
const DEFAULT_ENABLE_DRIVE_STATUS = "TRUE"					// True or False - Enable media drive(s) bar graphs.

/*==================================== SETTINGS =====================================*/

  1. Start the application:

    npm start
    
  2. Open your browser and navigate to:

    http://localhost:8888
    

    You can also link directly to either the Movies table or the TV Shows table by adding the table parameter on the url like so:

    http://localhost:8888/?table=tvshows
    

Support

Reddit Subscribers

Discord

Dependencies

API Endpoints

The application includes the following API endpoints:

These endpoints fetch data from the Radarr and Sonarr APIs and return it in JSON format.

File Structure

License

This project is licensed under the MIT License.

Author

Developed by pir8radio.

Update History

05-04-2025

04-26-2025

04-18-2025

04-14-2025

04-12-2025