LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

npm-check

checks for outdated and unused packages

TLDR

Check for updates
$ npm-check
copy
Interactive update
$ npm-check -u
copy
Check globally installed
$ npm-check -g
copy
Skip unused check
$ npm-check --skip-unused
copy
Update all
$ npm-check -y
copy
Check production only
$ npm-check --production
copy

SYNOPSIS

npm-check [options]

DESCRIPTION

npm-check checks for outdated and unused packages. Provides interactive updates.The tool shows update availability. Identifies unused dependencies.

PARAMETERS

-u

Interactive update mode.
-g
Check global packages.
--skip-unused
Skip unused package check.
-y
Update all without prompt.
--production
Production deps only.
--help
Display help information.

CAVEATS

Third-party tool. Install with npm install -g. Interactive TUI.

HISTORY

npm-check was created to provide interactive package updates and unused dependency detection.

SEE ALSO

npm(1), npm-outdated(1), ncu(1)

Copied to clipboard
Kai