Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I search npmjs.com packages on multiple tags?

How can I search packages on npmjs.com having two (or more) specific tags? I experimented with some search terms, but to no avail:

keywords:webpack+plugin
keywords:webpack,plugin
keywords:webpack keywords:plugin

The npmjs.com documentation also didn't give me an answer.

like image 594
Ringo De Smet Avatar asked May 13 '18 08:05

Ringo De Smet


People also ask

What is keywords in package JSON?

The keywords property inside a package. json file is, as you may have guessed, a collection of keywords about a module. Keywords can help identify a package, related modules and software, and concepts.

How many packages are there in NPM registry?

The free npm Registry has become the center of JavaScript code sharing, and with more than one million packages, the largest software registry in the world.


2 Answers

Try to use space

keywords:kw1 kw2
like image 75
UserKa Avatar answered Nov 10 '22 04:11

UserKa


You can do the search from console.

npm find "kw1" "kw2" 

https://docs.npmjs.com/cli/search

like image 31
zivce Avatar answered Nov 10 '22 03:11

zivce