rainkinz
rainkinz

Reputation: 10394

What's the equivalent of rubygems.org for nodejs?

Is there an equivalent site for node that is like rubygems.org? How do people lookup available packages for npm?

Upvotes: 0

Views: 180

Answers (1)

maček
maček

Reputation: 77778

npmjs.org

https://www.npmjs.org/

You can do searches from the command line too

$ npm search express
$ npm info express

Upvotes: 1

Related Questions