npm-outdated

Check for outdated packages

SYNOPSIS

npm outdated [<name> [<name> ...]]

DESCRIPTION

This command will check the registry to see if any (or, specific) installed packages are currently outdated.

In the output:

An example

$ npm outdated
Package      Current  Wanted  Latest  Location
glob          5.0.15  5.0.15   6.0.1  test-outdated-output
nothingness    0.0.3     git     git  test-outdated-output
npm            3.5.1   3.5.2   3.5.1  test-outdated-output
once           1.3.2   1.3.3   1.3.3  test-outdated-output

With these dependencies:

{
  "glob": "^5.0.15",
  "nothingness": "github:othiym23/nothingness#master",
  "npm": "^3.5.1",
  "once": "^1.3.1"
}

A few things to note:

CONFIGURATION

json

Show information in JSON format.

long

Show extended information.

parseable

Show parseable output instead of tree view.

global

Check packages in the global install prefix instead of in the current project.

depth

Max depth for checking dependency tree.

SEE ALSO