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

@mayrlabs/devlink

v0.0.3

Published

Work with npm/pnpm/yarn packages locally like a boss.

Readme

🛡️ Devlink

[!IMPORTANT] Devlink is a modernized, high-performance local package development orchestrator. It provides a seamless workflow for using local packages in other projects without the constraints of npm link or yarn link.

This is a modernized fork of the original whitecolor/yalc package, renamed and maintained as @mayrlabs/devlink.


⚡ Quick Start

Get up and running in seconds.

# Install globally
npm i -g @mayrlabs/devlink

# Go to your package and publish
cd my-package
devlink publish

# Go to your project and add the package
cd my-project
devlink add my-package

Why

When developing and authoring multiple packages (private or public), you often find yourself in need of testing the latest/WIP versions in other projects that you are working on in your local environment without publishing those packages to the remote registry. NPM and Yarn address this issue with a similar approach of symlinked packages (npm/yarn link). Though this may work in many cases, it often brings nasty constraints and problems with dependency resolution, symlink interoperability between file systems, etc.


🎮 Interactive Mode (NEW)

Devlink now features a stunning interactive dashboard. Just run devlink without any arguments to enter a developer-friendly, guided experience.

devlink

[!TIP] Use arrow keys to navigate, space to select options, and enter to confirm. It's smart enough to skip redundant prompts and guide you through complex flows.


📦 Core Features

🚀 High-Performance Publishing

Devlink uses fast-glob for lightning-fast file discovery. It respects your .gitignore and .npmignore files automatically—no extra configuration needed.

  • Watch Mode: devlink publish --watch automatically republishes and pushes updates whenever you save a file.
  • Push Updates: devlink publish --push propagates changes to all projects where the package is installed.

🏠 Local Package Store

All your published packages are kept in a central store at ~/.mayrlabs/devlink. Use the devlink store command to browse, manage, and delete older versions.

🛠️ Smart Installations

  • Pure Mode: Keeps your package.json clean while still allowing you to use local packages.
  • Git Integration: Use devlink git ignore to automatically hide devlink files from your git history, or devlink git show to make them visible.

📖 Command Reference

| Command | Description | | :--------------------------- | :------------------------------------------------- | | devlink | Launch the Interactive Dashboard | | devlink publish | Publish current package to local store | | devlink add <pkg> | Add a package from store to current project | | devlink update | Update devlinked packages to latest local versions | | devlink update-all | Shortcut to update all packages to latest | | devlink remove <pkg> | Remove a devlinked package from the project | | devlink store | Manage the local package repository | | devlink git <ignore\|show> | Manage .gitignore for devlink files |


🔐 Security & Constraints

  • Private Packages: Devlink respects the private: true flag in package.json by default.
  • Signatures: Use --sig to append a unique content hash to your version strings, preventing cache issues.
  • Scripts: Lifecycle scripts like prepare and prepublish are executed unless --no-scripts is passed.

Related links


⚖️ License

MIT © Aghogho Meyorn