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

fangirl

v1.0.8

Published

Makes code management easier when working across multiple repos

Readme

Fan Girl

Meet Fangirl. A multi-repo code management tool.

Fangirl is similar to Lerna and Yarn Workspaces but designed to work in a non monorepo structure.

Our codebase for Amna is split across mutliple repos. Some of those repos are open-source as well, meaning we can't move to a large monorepo. This means that we were constantly working across multiple repos, tied with npm link.

Fangirl does three (possibly more) things to make working across multiple repos easier :

  • links local dependencies
  • runs scripts in any repo
  • abstracts over git to make cross-library feature changes

Fangirl is not designed for CI workflows, it's mainly about developer experience, and making it fast to manage working with multiple repos.

Getting Started

To get started, create a folder with a package.json and add a repos attribute. Or add it in one of your existing packages.

We added it in the package.json of our client-ui because that's often where features begin.

// in any package.json add your repos
{
  "repos": [
    "../lo-graph",
    "../lo-graph-sync",
    "../amna-desktop",
    "../amna-browser",
    "../amna-common"
  ]
}

Note, the paths in the repos attribute do not necessarily have to be git repos, they are really just the directories that contain packages, and can even be subdirectories in a larger repo.

npm install -g fangirl

To verify fangirl works, run this in the directory with the package.json:

fangirl list

Here is the onboarding repo we use with our new developers and our fangirl scripts.

Setting Up

A few commands exist to help with setting up an environment:

| command | description | | ----------------- | -------------------------------------------- | | fangirl install | runs an npm install in all listed packages | | fangirl link | links any dependent libraries together | | fangirl unlink | unlinks all the dependent libraries |

Feature Changes

A few commands exist to help with creating repo cutting feature changes

| command | description | | --------------------------- | ------------------------------------------------------------------------------ | | fangirl branch | will tell you what branch you're on in each repo| | fangirl checkout <branch> | will create or checkout a git branch in all of the requested repos | | fangirl drop | if uncommited changes exist, will drop all the changes across all of the repos | | fangirl update | upgrades to new package version and updates the package.json of all dependents |

  • Use the -p or --packages flag to scope these commands to only to specific packages
  • Use the -m or --convertMaster flag to get the main branch even if master was requested

Run Scripts

A few commands exist to help with running commands in specific repos

| command | description | | -------------------------- | -------------------------------------------------------------- | | fangirl run <scriptName> | will run an npm run <scriptName> in all of the repos you ask |

  • Use the -p or --packages flag to scope thes commands to only to specific packages
  • Use the --parallel flag to run all of the commands at once. Think npm run watch in all of your repos

Testing Locally

After cloning this repo:

npm install
tsc -w
node dist/cli.js {args here}

Feel free to open an issue, or contribute any changes. Could use some tests!