Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

npm outdated command shows MISSING in current version

I have babelify in version 7.3.0 specified in devDependencies in my package.json file like below:

"devDependencies": {
  ...,
  "babelify": "7.3.0",
  ...
}

Everything is going fine and the dependency is downloaded from npm but when I've run npm outdated command I've got:

Package       Current  Wanted        Latest  Location
babelify      MISSING   7.3.0         7.3.0  project

What is going on here? Why MISSING? Did you have such situation?

like image 459
Piotr Pradzynski Avatar asked Feb 16 '17 07:02

Piotr Pradzynski


People also ask

Can npm detect outdated package?

Description. This command will check the registry to see if any (or, specific) installed packages are currently outdated. By default, only the direct dependencies of the root project and direct dependencies of your configured workspaces are shown.

How do I find an outdated npm package?

Here is the tip: run npm outdated from the terminal in your project folder to see if the installed packages are outdated. npm outdated is a built-in npm command and you don't have to install any additional packages for it.


1 Answers

What is going on here? Why MISSING? Did you have such situation?

MISSING means that package is not installed.

Installing the package will solve the problem.

like image 104
Alex Parloti Avatar answered Sep 27 '22 21:09

Alex Parloti