Rick
Rick

Reputation: 8846

How can I see who uses an NPM package on Github?

I would like to see how open-source projects use a particular NPM module.

Let's say I would like to find projects using the "normalizr" NPM package.

If I type "normalizr" into Github, I will get a bunch of forks and unrelated projects.

I really just want to see who has "normalizr" in their package.json file.

Upvotes: 4

Views: 2526

Answers (1)

Manan Vaghasiya
Manan Vaghasiya

Reputation: 922

You can see that on NPM website.

For example, go to normalizr, on right side look for Dependents section where all the dependents are listed. From there you can find their respective github/other repository links. Hope this helps.

Upvotes: 3

Related Questions