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

@underweek/mdd

v0.1.4

Published

A direct Windows Minecraft mod manager for the .minecraft/mods folder.

Downloads

665

Readme

@underweek/mdd

mdd is a direct Minecraft mod manager for Windows. It writes downloaded .jar files to the current %APPDATA%\\.minecraft\\mods folder; it is not a launcher and does not create profiles.

Install

Requirements: Windows and Node.js 18 or newer.

npm install -g @underweek/mdd

Then configure the Minecraft version and loader once:

mdd version 1.21.11
mdd loader fabric

Development

npm install
npm run check
node src/cli.js version 1.21.11
node src/cli.js loader fabric
node src/cli.js search "Mouse Tweaks"
node src/cli.js check

CLI

mdd version 1.21.11
mdd loader fabric
mdd search "Mouse Tweaks"
mdd search "Mouse Tweaks" --plain
mdd install "Mouse Tweaks"
mdd install [email protected]
mdd install mousetweaks appleskin betterf3
mdd install "Mouse Tweaks" --no-dependencies
mdd list
mdd remove "Mouse Tweaks"
mdd check
mdd check --strict

Modrinth is used as the initial source because it exposes project/version metadata, loader filters, dependency metadata, hashes, and direct file URLs. The package verifies the SHA-1 reported by Modrinth before placing a file in mods.

mdd install accepts multiple mod names or slugs in one command. They are installed sequentially; shared dependencies are processed only once, and a failed mod does not stop the remaining requested mods.

Append @version to request a specific mod version. Modrinth version suffixes are matched automatically, so mdd install [email protected] selects 0.8.12+mc1.21.11 for the configured Minecraft version.

mdd search opens an interactive Windows-terminal selector when attached to a terminal. Use Up/Down and Enter; the selected project's ID, slug, and description are shown below the list. --plain keeps a non-interactive aligned output and --json remains available for scripts.

mdd list uses the same interactive selector for installed mods. It shows eight entries at a time and scrolls with Up/Down; press / to filter by name, ID, filename, or version, and Esc to return to the full list. The selected mod's ID, version, file, and type are shown below. Use mdd list --plain for one-line output. mdd remove deletes the selected mod file directly and does not create a backup.

mdd check reads Fabric metadata from installed JARs, understands provides aliases and nested Fabric libraries, chooses the dependency-compatible JAR when duplicate IDs exist, and reports the state of the latest latest.log. A warning for a shadowed duplicate is not a launch failure. Use mdd check --strict when warnings should produce a non-zero exit code.

Set MDD_MINECRAFT_DIR or pass --minecraft-dir to override the default game directory.