项目作者: raineorshine

项目描述 :
Find newer versions of package dependencies than what your package.json allows
高级语言: JavaScript
项目地址: git://github.com/raineorshine/npm-check-updates.git
创建时间: 2013-09-07T01:36:03Z
项目社区:https://github.com/raineorshine/npm-check-updates

开源协议:Other

下载


npm-check-updates

npm version
Build Status

npm-check-updates upgrades your package.json dependencies to the latest versions, ignoring specified versions.

  • maintains existing semantic versioning policies, i.e. "react": "^17.0.2" to "react": "^18.3.1".
  • only modifies package.json file. Run npm install to update your installed packages and package-lock.json.
  • sensible defaults, but highly customizable
  • compatible with npm, yarn, pnpm, deno, and bun
  • CLI and module usage

example output

{\color{red}Red} major upgrade (and all major version zero)

{\color{cyan}Cyan} minor upgrade

{\color{green}Green} patch upgrade

Installation

Install globally to use npm-check-updates or the shorter ncu:

  1. npm install -g npm-check-updates

Or run with npx (only the long form is supported):

  1. npx npm-check-updates

Usage

Check the latest versions of all project dependencies:

  1. $ ncu
  2. Checking package.json
  3. [====================] 5/5 100%
  4. eslint 7.32.0 8.0.0
  5. prettier ^2.7.1 ^3.0.0
  6. svelte ^3.48.0 ^3.51.0
  7. typescript >3.0.0 >4.0.0
  8. untildify <4.0.0 ^4.0.0
  9. webpack 4.x 5.x
  10. Run ncu -u to upgrade package.json

Upgrade a project’s package file:

Make sure your package file is in version control and all changes have been committed. This will overwrite your package file.

  1. $ ncu -u
  2. Upgrading package.json
  3. [====================] 1/1 100%
  4. express 4.12.x 4.13.x
  5. Run npm install to install new versions.
  6. $ npm install # update installed packages and package-lock.json

Check global packages:

  1. ncu -g

Interactive Mode

Choose which packages to update in interactive mode:

  1. ncu --interactive
  2. ncu -i

ncu --interactive

Combine with --format group for a truly luxe experience:

ncu --interactive --format group

Filter packages

Filter packages using the --filter option or adding additional cli arguments:

  1. # upgrade only mocha
  2. ncu mocha
  3. ncu -f mocha
  4. ncu --filter mocha
  5. # upgrade only chalk, mocha, and react
  6. ncu chalk mocha react
  7. ncu chalk, mocha, react
  8. ncu -f "chalk mocha react"

Filter with wildcards or regex:

  1. # upgrade packages that start with "react-"
  2. ncu react-*
  3. ncu "/^react-.*$/"

Exclude specific packages with the --reject option or prefixing a filter with !. Supports strings, wildcards, globs, comma-or-space-delimited lists, and regex:

  1. # upgrade everything except nodemon
  2. ncu \!nodemon
  3. ncu -x nodemon
  4. ncu --reject nodemon
  5. # upgrade packages that do not start with "react-".
  6. ncu \!react-*
  7. ncu '/^(?!react-).*$/' # mac/linux
  8. ncu "/^(?!react-).*$/" # windows

Advanced filters: filter, filterResults, filterVersion

How dependency updates are determined

  • Direct dependencies are updated to the latest stable version:
    • 2.0.12.2.0
    • 1.21.3
    • 0.1.01.0.1
  • Range operators are preserved and the version is updated:
    • ^1.2.0^2.0.0
    • 1.x2.x
    • >0.2.0>0.3.0
  • “Less than” is replaced with a wildcard:
    • <2.0.0^3.0.0
    • 1.0.0 < 2.0.0^3.0.0
  • “Any version” is preserved:
    • **
  • Prerelease versions are ignored by default.
    • Use --pre to include prerelease versions (e.g. alpha, beta, build1235)
  • Choose what level to upgrade to:
    • With --target semver, update according to your specified semver version ranges:
      • ^1.1.0^1.9.99
    • With --target minor, strictly update the patch and minor versions (including major version zero):
      • 0.1.00.2.1
    • With --target patch, strictly update the patch version (including major version zero):
      • 0.1.00.1.2
    • With --target @next, update to the version published on the next tag:
      • 0.1.0 -> 0.1.1-next.1

Options

Options are merged with the following precedence:

  1. Command line options
  2. Local Config File (current working directory)
  3. Project Config File (next to package.json)
  4. User Config File ($HOME)

Options that take no arguments can be negated by prefixing them with --no-, e.g. --no-peer.


















































































































































































































—cache Cache versions to a local cache file. Default —cacheFile is ~/.ncu-cache.json and default —cacheExpiration is 10 minutes.
—cacheClear Clear the default cache, or the cache file specified by —cacheFile.
—cacheExpiration Cache expiration in minutes. Only works with —cache. (default: 10)
—cacheFile Filepath for the cache file. Only works with —cache. (default: “~/.ncu-cache.json”)
—color Force color in terminal.
—concurrency Max number of concurrent HTTP requests to registry. (default: 8)
—configFileName Config file name. (default: .ncurc.{json,yml,js,cjs})
—configFilePath Directory of .ncurc config file. (default: directory of packageFile)
—cwd Working directory in which npm will be executed.
—deep Run recursively in current working directory. Alias of (—packageFile ‘**/package.json’).
—dep Check one or more sections of dependencies only: dev, optional, peer, prod, or packageManager (comma-delimited). (default: [“prod”,”dev”,”optional”,”packageManager”])
—deprecated Include deprecated packages. Use —no-deprecated to exclude deprecated packages (uses more bandwidth). (default: true)
-d, —doctor Iteratively installs upgrades and runs tests to identify breaking upgrades. Requires -u to execute.
—doctorInstall Specifies the install script to use in doctor mode. (default: npm install or the equivalent for your package manager)
—doctorTest Specifies the test script to use in doctor mode. (default: npm test)
—enginesNode Include only packages that satisfy engines.node as specified in the package file.
-e, —errorLevel Set the error level. 1: exits with error code 0 if no errors occur. 2: exits with error code 0 if no packages need updating (useful for continuous integration). (default: 1)
-f, —filter

Include only package names matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function.
filterResults Filters results based on a user provided predicate function after fetching new versions.
—filterVersion

Filter on package version using comma-or-space-delimited list, /regex/, or predicate function.
—format Modify the output formatting or show additional information. Specify one or more comma-delimited values: group, ownerChanged, repo, time, lines, installedVersion. (default: [])
-g, —global Check global packages instead of in the current project.
groupFunction Customize how packages are divided into groups when using —format group.
—install Control the auto-install behavior: always, never, prompt. (default: “prompt”)
-i, —interactive Enable interactive prompts for each dependency; implies -u unless one of the json options are set.
-j, —jsonAll Output new package file instead of human-readable message.
—jsonDeps Like jsonAll but only lists dependencies, devDependencies, optionalDependencies, etc of the new package data.
—jsonUpgraded Output upgraded dependencies in json.
-l, —loglevel Amount to log: silent, error, minimal, warn, info, verbose, silly. (default: “warn”)
—mergeConfig Merges nested configs with the root config file for —deep or —packageFile options. (default: false)
-m, —minimal Do not upgrade newer versions that are already satisfied by the version range according to semver.
—packageData Package file data (you can also use stdin).
—packageFile Package file(s) location. (default: ./package.json)
-p, —packageManager npm, yarn, pnpm, deno, bun, staticRegistry (default: npm).
—peer Check peer dependencies of installed packages and filter updates to compatible versions.
—pre Include prerelease versions, e.g. -alpha.0, -beta.5, -rc.2. Automatically set to 1 when —target is newest or greatest, or when the current version is a prerelease. (default: 0)
—prefix Current working directory of npm.
-r, —registry Specify the registry to use when looking up package versions.
—registryType Specify whether —registry refers to a full npm registry or a simple JSON file or url: npm, json. (default: npm)
-x, —reject

Exclude packages matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function.
—rejectVersion

Exclude package.json versions using comma-or-space-delimited list, /regex/, or predicate function.
—removeRange Remove version ranges from the final package version.
—retry Number of times to retry failed requests for package info. (default: 3)
—root Runs updates on the root project in addition to specified workspaces. Only allowed with —workspace or —workspaces. (default: true)
-s, —silent Don’t output anything. Alias for —loglevel silent.
—stdin Read package.json from stdin.
-t, —target Determines the version to upgrade to: latest, newest, greatest, minor, patch, semver, @[tag], or [function]. (default: latest)
—timeout Global timeout in milliseconds. (default: no global timeout and 30 seconds per npm-registry-fetch)
-u, —upgrade Overwrite package file with upgraded versions instead of just outputting to console.
—verbose Log additional information for debugging. Alias for —loglevel verbose.
-w, —workspace Run on one or more specified workspaces. Add —root to also upgrade the root project. (default: [])
-ws, —workspaces Run on all workspaces. Add —root to also upgrade the root project.

Advanced Options

Some options have advanced usage, or allow per-package values by specifying a function in your .ncurc.js file.

Run ncu --help [OPTION] to view advanced help for a specific option, or see below:

doctor

Usage:

  1. ncu --doctor -u
  2. ncu --no-doctor
  3. ncu -du

Iteratively installs upgrades and runs your project’s tests to identify breaking upgrades. Reverts broken upgrades and updates package.json with working upgrades.

Requires -u to execute (modifies your package file, lock file, and node_modules)

To be more precise:

  1. Runs npm install and npm test to ensure tests are currently passing.
  2. Runs ncu -u to optimistically upgrade all dependencies.
  3. If tests pass, hurray!
  4. If tests fail, restores package file and lock file.
  5. For each dependency, install upgrade and run tests.
  6. Prints broken upgrades with test error.
  7. Saves working upgrades to package.json.

Additional options:




—doctorInstallspecify a custom install script (default: npm install or yarn)
—doctorTestspecify a custom test script (default: npm test)

Example:

  1. $ ncu --doctor -u
  2. Running tests before upgrading
  3. npm install
  4. npm run test
  5. Upgrading all dependencies and re-running tests
  6. ncu -u
  7. npm install
  8. npm run test
  9. Tests failed
  10. Identifying broken dependencies
  11. npm install
  12. npm install --no-save react@16.0.0
  13. npm run test
  14. react 15.0.0 16.0.0
  15. npm install --no-save react-redux@7.0.0
  16. npm run test
  17. react-redux 6.0.0 7.0.0
  18. /projects/myproject/test.js:13
  19. throw new Error('Test failed!')
  20. ^
  21. npm install --no-save react-dnd@11.1.3
  22. npm run test
  23. react-dnd 10.0.0 11.1.3
  24. Saving partially upgraded package.json

filter

Usage:

  1. ncu --filter [p]
  2. ncu -f [p]

Include only package names matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function. Only included packages will be checked with --peer.

--filter runs before new versions are fetched, in contrast to --filterResults which runs after.

You can also specify a custom function in your .ncurc.js file, or when importing npm-check-updates as a module.

:warning: The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. To convert a JSON config to a JS config, follow the instructions at https://github.com/raineorshine/npm-check-updates#config-functions.

  1. /**
  2. @param name The name of the dependency.
  3. @param semver A parsed Semver array of the current version.
  4. (See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
  5. @returns True if the package should be included, false if it should be excluded.
  6. */
  7. filter: (name, semver) => {
  8. if (name.startsWith('@myorg/')) {
  9. return false
  10. }
  11. return true
  12. }

filterResults

Filters results based on a user provided predicate function after fetching new versions.

filterResults runs after new versions are fetched, in contrast to filter, reject, filterVersion, and rejectVersion, which run before. This allows you to exclude upgrades with filterResults based on how the version has changed (e.g. a major version change).

:warning: The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. To convert a JSON config to a JS config, follow the instructions at https://github.com/raineorshine/npm-check-updates#config-functions.

  1. /** Exclude major version updates. Note this could also be achieved with --target semver.
  2. @param {string} packageName The name of the dependency.
  3. @param {string} current Current version declaration (may be a range).
  4. @param {SemVer[]} currentVersionSemver Current version declaration in semantic versioning format (may be a range).
  5. @param {string} upgraded Upgraded version.
  6. @param {SemVer} upgradedVersionSemver Upgraded version in semantic versioning format.
  7. @returns {boolean} Return true if the upgrade should be kept, otherwise it will be ignored.
  8. */
  9. filterResults: (packageName, { current, currentVersionSemver, upgraded, upgradedVersionSemver }) => {
  10. const currentMajor = parseInt(currentVersionSemver[0]?.major, 10)
  11. const upgradedMajor = parseInt(upgradedVersionSemver?.major, 10)
  12. if (currentMajor && upgradedMajor) {
  13. return currentMajor >= upgradedMajor
  14. }
  15. return true
  16. }

For the SemVer type definition, see: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring

filterVersion

Usage:

  1. ncu --filterVersion [p]

Include only versions matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function.

--filterVersion runs before new versions are fetched, in contrast to --filterResults which runs after.

You can also specify a custom function in your .ncurc.js file, or when importing npm-check-updates as a module.

:warning: The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. To convert a JSON config to a JS config, follow the instructions at https://github.com/raineorshine/npm-check-updates#config-functions. This function is an alias for the filter option function.

  1. /**
  2. @param name The name of the dependency.
  3. @param semver A parsed Semver array of the current version.
  4. (See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
  5. @returns True if the package should be included, false if it should be excluded.
  6. */
  7. filterVersion: (name, semver) => {
  8. if (name.startsWith('@myorg/') && parseInt(semver[0]?.major) > 5) {
  9. return false
  10. }
  11. return true
  12. }

format

Usage:

  1. ncu --format [value]

Modify the output formatting or show additional information. Specify one or more comma-delimited values.








groupGroups packages by major, minor, patch, and major version zero updates.
ownerChangedShows if the package owner has changed.
repoInfers and displays links to the package’s source code repository. Requires packages to be installed.
timeShows the publish time of each upgrade.
linesPrints name@version on separate lines. Useful for piping to npm install.
installedVersionPrints the exact current version number instead of a range.

groupFunction

Customize how packages are divided into groups when using --format group.

Only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. To convert a JSON config to a JS config, follow the instructions at https://github.com/raineorshine/npm-check-updates#config-functions.

  1. /**
  2. @param name The name of the dependency.
  3. @param defaultGroup The predefined group name which will be used by default.
  4. @param currentSpec The current version range in your package.json.
  5. @param upgradedSpec The upgraded version range that will be written to your package.json.
  6. @param upgradedVersion The upgraded version number returned by the registry.
  7. @returns A predefined group name ('major' | 'minor' | 'patch' | 'majorVersionZero' | 'none') or a custom string to create your own group.
  8. */
  9. groupFunction: (name, defaultGroup, currentSpec, upgradedSpec, upgradedVersion) => {
  10. if (name === 'typescript' && defaultGroup === 'minor') {
  11. return 'major'
  12. }
  13. if (name.startsWith('@myorg/')) {
  14. return 'My Org'
  15. }
  16. return defaultGroup
  17. }

install

Usage:

  1. ncu --install [value]

Default: prompt

Control the auto-install behavior.





alwaysRuns your package manager’s install command automatically after upgrading.
neverDoes not install and does not prompt.
promptShows a message after upgrading that recommends an install, but does not install. In interactive mode, prompts for install. (default)

packageManager

Usage:

  1. ncu --packageManager [s]
  2. ncu -p [s]

Specifies the package manager to use when looking up versions.






npmSystem-installed npm. Default.
yarnSystem-installed yarn. Automatically used if yarn.lock is present.
pnpmSystem-installed pnpm. Automatically used if pnpm-lock.yaml is present.
bunSystem-installed bun. Automatically used if bun.lock or bun.lockb is present.

peer

Usage:

  1. ncu --peer
  2. ncu --no-peer

Check peer dependencies of installed packages and filter updates to compatible versions.

Example:

The following example demonstrates how --peer works, and how it uses peer dependencies from upgraded modules.

The package ncu-test-peer-update has two versions published:

  • 1.0.0 has peer dependency "ncu-test-return-version": "1.0.x"
  • 1.1.0 has peer dependency "ncu-test-return-version": "1.1.x"

Our test app has the following dependencies:

  1. "ncu-test-peer-update": "1.0.0",
  2. "ncu-test-return-version": "1.0.0"

The latest versions of these packages are:

  1. "ncu-test-peer-update": "1.1.0",
  2. "ncu-test-return-version": "2.0.0"

With --peer:

ncu upgrades packages to the highest version that still adheres to the peer dependency constraints:

  1. ncu-test-peer-update 1.0.0 1.1.0
  2. ncu-test-return-version 1.0.0 1.1.0

Without --peer:

As a comparison: without using the --peer option, ncu will suggest the latest versions, ignoring peer dependencies:

  1. ncu-test-peer-update 1.0.0 1.1.0
  2. ncu-test-return-version 1.0.0 2.0.0

registryType

Usage:

  1. ncu --registryType [type]

Specify whether --registry refers to a full npm registry or a simple JSON file.




npmDefault npm registry
jsonChecks versions from a file or url to a simple JSON registry. Must include the --registry option.

Example:

// local file
$ ncu —registryType json —registry ./registry.json

// url
$ ncu —registryType json —registry https://api.mydomain/registry.json

// you can omit —registryType when the registry ends in .json
$ ncu —registry ./registry.json
$ ncu —registry https://api.mydomain/registry.json

registry.json:

{
“prettier”: “2.7.1”,
“typescript”: “4.7.4”
}

reject

Usage:

  1. ncu --reject [p]
  2. ncu -x [p]

The inverse of --filter. Exclude package names matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function. This will also exclude them from the --peer check.

--reject runs before new versions are fetched, in contrast to --filterResults which runs after.

You can also specify a custom function in your .ncurc.js file, or when importing npm-check-updates as a module.

:warning: The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. To convert a JSON config to a JS config, follow the instructions at https://github.com/raineorshine/npm-check-updates#config-functions.

  1. /**
  2. @param name The name of the dependency.
  3. @param semver A parsed Semver array of the current version.
  4. (See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
  5. @returns True if the package should be excluded, false if it should be included.
  6. */
  7. reject: (name, semver) => {
  8. if (name.startsWith('@myorg/')) {
  9. return true
  10. }
  11. return false
  12. }

rejectVersion

Usage:

  1. ncu --rejectVersion [p]

The inverse of --filterVersion. Exclude versions matching the given string, wildcard, glob, comma-or-space-delimited list, /regex/, or predicate function.

--rejectVersion runs before new versions are fetched, in contrast to --filterResults which runs after.

You can also specify a custom function in your .ncurc.js file, or when importing npm-check-updates as a module.

:warning: The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. To convert a JSON config to a JS config, follow the instructions at https://github.com/raineorshine/npm-check-updates#config-functions. This function is an alias for the reject option function.

  1. /**
  2. @param name The name of the dependency.
  3. @param semver A parsed Semver array of the current version.
  4. (See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
  5. @returns True if the package should be excluded, false if it should be included.
  6. */
  7. rejectVersion: (name, semver) => {
  8. if (name.startsWith('@myorg/') && parseInt(semver[0]?.major) > 5) {
  9. return true
  10. }
  11. return false
  12. }

target

Usage:

  1. ncu --target [value]
  2. ncu -t [value]

Determines the version to upgrade to. (default: “latest”)









greatestUpgrade to the highest version number published, regardless of release date or tag. Includes prereleases.
latestUpgrade to whatever the package’s “latest” git tag points to. Excludes prereleases unless —pre is specified.
minorUpgrade to the highest minor version without bumping the major version.
newestUpgrade to the version with the most recent publish date, even if there are other version numbers that are higher. Includes prereleases.
patchUpgrade to the highest patch version without bumping the minor or major versions.
semverUpgrade to the highest version within the semver range specified in your package.json.
@[tag]Upgrade to the version published to a specific tag, e.g. ‘next’ or ‘beta’.

e.g.

  1. ncu --target semver

You can also specify a custom function in your .ncurc.js file, or when importing npm-check-updates as a module.

:warning: The predicate function is only available in .ncurc.js or when importing npm-check-updates as a module, not on the command line. To convert a JSON config to a JS config, follow the instructions at https://github.com/raineorshine/npm-check-updates#config-functions.

  1. /** Upgrade major version zero to the next minor version, and everything else to latest.
  2. @param name The name of the dependency.
  3. @param semver A parsed Semver object of the upgraded version.
  4. (See: https://git.coolaj86.com/coolaj86/semver-utils.js#semverutils-parse-semverstring)
  5. @returns One of the valid target values (specified in the table above).
  6. */
  7. target: (name, semver) => {
  8. if (parseInt(semver[0]?.major) === '0') return 'minor'
  9. return 'latest'
  10. }

Config File

Add a .ncurc.{json,yml,js,cjs} file to your project directory to specify configuration information.

For example, .ncurc.json:

  1. {
  2. "upgrade": true,
  3. "filter": "svelte",
  4. "reject": ["@types/estree", "ts-node"]
  5. }

Options are merged with the following precedence:

  1. Command line options
  2. Local Config File (current working directory)
  3. Project Config File (next to package.json)
  4. User Config File ($HOME)

You can also specify a custom config file name or path using the --configFileName or --configFilePath command line options.

Config Functions

Some options offer more advanced configuration using a function definition. These include filter, filterVersion, filterResults, reject, rejectVersion, and groupFunction. To define an options function, convert the config file to a JS file by adding the .js extension and setting module.exports:

For example, .ncurc.js:

  1. module.exports = {
  2. upgrade: true,
  3. filter: name => name.startsWith('@myorg/'),
  4. }

JSON Schema

If you write .ncurc config files using json or yaml, you can add the JSON Schema to your IDE settings for completions.

e.g. for VS Code:

  1. "json.schemas": [
  2. {
  3. "fileMatch": [
  4. ".ncurc",
  5. ".ncurc.json",
  6. ],
  7. "url": "https://raw.githubusercontent.com/raineorshine/npm-check-updates/main/src/types/RunOptions.json"
  8. }
  9. ],
  10. "yaml.schemas": {
  11. "https://raw.githubusercontent.com/raineorshine/npm-check-updates/main/src/types/RunOptions.json": [
  12. ".ncurc.yml",
  13. ]
  14. },

Module/Programmatic Usage

npm-check-updates can be imported as a module:

  1. import ncu from 'npm-check-updates'
  2. const upgraded = await ncu.run({
  3. // Pass any cli option
  4. packageFile: '../package.json',
  5. upgrade: true,
  6. // Defaults:
  7. // jsonUpgraded: true,
  8. // silent: true,
  9. })
  10. console.log(upgraded) // { "mypackage": "^2.0.0", ... }

Contributing

Contributions are happily accepted. I respond to all PR’s and can offer guidance on where to make changes. For contributing tips see CONTRIBUTING.md.

Problems?

File an issue. Please search existing issues first.