← All recipes
Moderne licensed

Node.js dependency insight

Recipe IDorg.openrewrite.javascript.search.DependencyInsight
Artifactorg.openrewrite:rewrite-javascript

Find direct and transitive npm dependencies matching a package name pattern. Results include dependencies that either directly match or transitively include a matching dependency.

Single recipeMSAL

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.javascript.search.DependencyInsight --recipe-option "packageNamePattern=@types/*"

If the recipe isn’t available locally, install it with:

mod config recipes jar install org.openrewrite:rewrite-javascript:8.88.0

Options

NameTypeDescription
packageNamePatternrequiredStringA glob pattern to match npm package names. Use * as a wildcard.
e.g. @types/*
scopeStringMatch dependencies in the specified scope. All scopes are searched by default.
e.g. dependencies
onlyDirectBooleanIf enabled, transitive dependencies will not be considered. All dependencies are searched by default.
e.g. true

Data tables

Structured output this recipe can produce.

  • Node.js dependencies in useDirect and transitive dependencies in use in Node.js projects.org.openrewrite.javascript.table.NodeDependenciesInUse
  • Source files that had resultsSource files that were modified by the recipe run.org.openrewrite.table.SourcesFileResults
  • Source files that had search resultsSearch results that were found during the recipe run.org.openrewrite.table.SearchResults
  • Source files that errored on a recipeThe details of all errors produced by a recipe run.org.openrewrite.table.SourcesFileErrors
  • Recipe performanceStatistics used in analyzing the performance of recipes.org.openrewrite.table.RecipeRunStats