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

@laxman1892/anime-cli

v0.1.1

Published

Cross-platform anime CLI for search, streaming, and downloads.

Readme

anime-cli

Cross-platform anime CLI for searching shows, choosing episodes, streaming in local players, and downloading with external tools.

Features

  • Search anime from SubsPlease
  • Browse episodes and available qualities
  • Stream through mpv or vlc
  • Download with aria2c, yt-dlp, or webtorrent
  • Save preferences such as player, downloader, quality, and download path
  • Check external tool availability with anime-cli doctor

Requirements

  • Node.js 20 or newer
  • npm

Optional external tools:

  • mpv for playback
  • vlc for playback
  • webtorrent for magnet streaming and torrent downloads
  • aria2c for direct downloads
  • yt-dlp for direct downloads

The CLI detects these automatically and tells you what is available.

Install

From npm

npm install -g @laxman1892/anime-cli

Then run:

anime-cli doctor
anime-cli

Run without global install

npx @laxman1892/anime-cli doctor
npx @laxman1892/anime-cli

From source

npm install
npm run build
node bin/anime.js doctor
node bin/anime.js

External Tools Setup

You only need the tools you plan to use.

Windows

Install any of these and make sure they are available on PATH:

  • mpv
  • vlc
  • webtorrent-cli
  • aria2
  • yt-dlp

After installing them, open a new terminal and run:

anime-cli doctor

macOS

With Homebrew, a typical setup looks like:

brew install mpv vlc webtorrent-cli aria2 yt-dlp

Then verify:

anime-cli doctor

Linux

Install the tools from your distro package manager where available, then run:

anime-cli doctor

Usage

Start the interactive flow:

anime-cli

Or search directly:

anime-cli search "Frieren"

Useful commands:

anime-cli doctor
anime-cli config list
anime-cli config get preferredPlayer
anime-cli config set preferredPlayer mpv
anime-cli config set preferredDownloader webtorrent
anime-cli config set preferredQuality 1080p
anime-cli config set downloadPath C:\anime

Configuration

Stored settings currently include:

  • preferred player
  • preferred downloader
  • preferred quality
  • download path

Use:

anime-cli config list

to inspect current values.

Publishing To npm

Before publishing:

  1. Make sure you are logged in to npm.
  2. Run the full test suite.
  3. Build the package.
  4. Bump the version in package.json.

Commands:

npm login
npm test
npm publish

This package uses:

  • files in package.json to publish only the runtime package contents
  • prepublishOnly to run the test suite before publishing
  • publishConfig.access=public for public npm publication

Package Contents

Published package contents are limited to:

  • bin/
  • dist/
  • README.md
  • LICENSE

Development

npm install
npm run dev

Checks:

npm run check
npm test

Notes

  • Playback of magnet links uses WebTorrent plus a local player such as mpv or vlc.
  • Direct playback depends on the provider returning a playable source.

License

MIT