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

@rnx-kit/yarn-plugin-install-to

v0.2.1

Published

EXPERIMENTAL - USE WITH CAUTION - yarn-plugin-install-to

Downloads

8

Readme

@rnx-kit/yarn-plugin-install-to

Build npm version

🚧🚧🚧🚧🚧🚧🚧🚧🚧🚧🚧

THIS TOOL IS EXPERIMENTAL — USE WITH CAUTION

🚧🚧🚧🚧🚧🚧🚧🚧🚧🚧🚧

A plugin for yarn v4, that adds an install-to command that executes a partial install based on the dependencies of one or more packages inside the monorepo.

Details

This replicates the core installation code in yarn's Project.install function.

  • It forces the immutable flag internally which will error if there are any lockfile changes
  • This will also install dependencies of the root package given that this is typically required for executing root level build scripts.

Internally this works by paring down the set of resolved packages to just ones required to install, this is what drives the set of fetchers. Then the set of accessibleLocators are pared down which drives the link/install behavior.

Installation

The plugin needs to be installed via yarn plugin install command. This needs to reference the produced bundle out of the dist folder.

yarn plugin import ./path/to/my/yarn-plugin-install-to.cjs

Usage

Once installed the install-to command will appear in yarn --help.

yarn install-to @my-scope/package1 @my-scope/package2

Optionally if --verbose is specified additional information about the packages installed and what percent of the repository is being installed will be output.

yarn install-to --verbose @my-scope/package1