Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find packages that gives depreciated warning- NPM

I have lot of dependencies installed. while npm install I am getting npm warn deprecated please update to some version. how to find which package produces this warning.

like image 692
Sibiraj Avatar asked May 21 '17 13:05

Sibiraj


1 Answers

Open your terminal and run these two commands:

  1. cd
  2. npm outdated

It should return a list of outdated packages that need to be upgraded.

like image 182
triedit Avatar answered Oct 17 '22 17:10

triedit