npm fund: Usage & Output
See which dependencies request funding.
npm fund lists packages in your tree that declare a funding field, so you can support the projects you depend on.
What it does
Walks the dependency tree and prints packages with a funding entry, grouped by URL. npm fund <pkg> opens (or prints) a specific package funding URL. The brief "packages are looking for funding" note after install is separate and controlled by the fund config.
Common usage
Terminal
npm fund # list funding links
npm fund react # show funding for one package
npm install --no-fund # suppress the post-install fund noteCommon CI tip: quiet the funding output
The post-install funding message adds noise to CI logs. Disable it globally with the fund config so installs stay quiet, without affecting anything else.
.github/workflows/ci.yml
npm config set fund false
# or per-command:
npm ci --no-fund --no-auditRelated guides
npm install: Usage, Options & Common CI ErrorsWhat npm install does, the flags you actually use, and the install failures that break CI builds - ERESOLVE,…
npm ci: Usage, Options & Common CI Errorsnpm ci does a clean, reproducible install from package-lock.json - the right command for CI. Usage, flags, an…
npm config: Usage, Options & Common Errorsnpm config gets and sets npm settings and writes .npmrc. Usage for registry, tokens, and cache, plus the env-…