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

vd-go

v1.0.3

Published

High-performance video downloader CLI using Go

Readme

vd - High-Performance Video Downloader 🚀

vd is a lightweight, blazing-fast, and multi-threaded CLI video downloader written in Go. It supports parallel downloads using goroutines, format selection, playlist management, and much more.

🌟 Features

  • Multi-threaded: Download multiple URLs or playlist items in parallel using -go.
  • Cross-Platform: Works seamlessly on Windows, Linux, and macOS.
  • Format Control: List and select specific video/audio formats.
  • Post-processing: Extract audio, embed subtitles, metadata, and thumbnails (requires FFmpeg).
  • Privacy & Security: Support for proxies, cookies (browser/file), and IPv4/IPv6 forcing.
  • Smart Management: Skip existing files, record download history, and restrict filenames.

📦 Installation

Since vd is distributed via npm, you can install it globally on any system with Node.js installed:

npm install -g vb-go

🚀 Quick Start

Help menu

vd -h

Basic download:

vd "[https://www.youtube.com/watch?v=example](https://www.youtube.com/watch?v=example)"

Download multiple videos in parallel:

vd -go "URL1" "URL2" "URL3"

Download a playlist to a specific directory:

vd -P ./my-videos -yes-playlist "PLAYLIST_URL"

🛠️ Common Options

| Flag | Description | | ------------- | ------------------------------------------------------- | | -go | Download all provided URLs in parallel using goroutines | | -go-workers | Set max parallel workers (e.g., -go-workers 3) | | -f | Specify format (e.g., bestvideo+bestaudio) | | -x | Extract audio only (requires FFmpeg) | | -P | Set download directory path | | -F | List all available formats | | -j | Print JSON information |

📖 Examples

Extract MP3 audio from a video:

vd -x --audio-format mp3 "URL"

Download specific items from a playlist:

vd -I 1:5,10 "PLAYLIST_URL"

Force IPv4 and use a proxy:

vd -4 --proxy "socks5://127.0.0.1:1080" "URL"

⚙️ Requirements

  • FFmpeg (Optional): Required for merging video/audio tracks, extracting audio, or embedding metadata.
  • Node.js: Required for installation via npm.

License: MIT (LICENSE)

Built with ❤️ by Saimon