How to find search/find npm packages

2019-01-20 22:33发布

14条回答
淡お忘
2楼-- · 2019-01-20 23:08

https://npms.io is really nice, provides quality and maintenance stats too

查看更多
▲ chillily
3楼-- · 2019-01-20 23:10

npm search works pretty well:

npm search connect

npm view will show you the timestamp of each version and everthing else from package.json (including node version)

npm view connect

查看更多
三岁会撩人
4楼-- · 2019-01-20 23:11

Libraries.io is great for searching and filtering through NPM modules, you can also filter by license and keyword: https://libraries.io/search?platforms=NPM

查看更多
Root(大扎)
5楼-- · 2019-01-20 23:11

For a fast method available in your console, type:

npm search keyword

< Keyword > searches Title, Description, Author and Keywords of all packages.

查看更多
狗以群分
6楼-- · 2019-01-20 23:15

npmsearch sorts the results by a combination of relevance and downloads. The command line version can be installed from npm:

[sudo] npm install -g npmsearch

disclamer: I am the author of npmsearch


node-modules allows you to personalize your results according to the modules that you have starred/followed on github

查看更多
SAY GOODBYE
7楼-- · 2019-01-20 23:20

https://github.com/Enome/node-package-finder (Latest commit 26ff789 on 4 May 2012, should count as dead)

查看更多
登录 后发表回答