0

Is there an NPM equivalent to RubyGems:

gem list --remote --source=http://gems.github.com/

I am trying to get a list of just the package names available on npm

George L
  • 1,673
  • 2
  • 26
  • 39

1 Answers1

0

Not the ideal solution, but its fairly easy to replicate the NPM registry with couchDB, and then querying it for the information needed: https://docs.npmjs.com/misc/registry

As of writing this, the entire clone is ~1.5GB of space, which includes lots of metadata.

George L
  • 1,673
  • 2
  • 26
  • 39