0
I started a project in React and want to know how I search for a certain package installed directly by npm ?
0
I started a project in React and want to know how I search for a certain package installed directly by npm ?
1
-2
Run the command below on the terminal:
npm list | grep {pacote_desejado}
Browser other questions tagged node.js react-native npm
You are not signed in. Login or sign up in order to post.
To list installed packages:
npm list -g --depth=0
and to list a particular package:npm list -g --depth=0 | grep nome-do-pacote
– Ricardo Pontual