HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

npm fund — Retrieve funding information from packages. More information: <https://docs.npmjs.com/cli/npm-fund/>

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandfromretrievenpm fundcliinformationfundingpackages

Problem

How to use the npm fund command: Retrieve funding information from packages. More information: <https://docs.npmjs.com/cli/npm-fund/>.

Solution

npm fund — Retrieve funding information from packages. More information: <https://docs.npmjs.com/cli/npm-fund/>.

List dependencies with funding URL for the project in the current directory:
npm fund


Open the funding URL for a specific package in the default web browser:
npm fund {{package}}


List dependencies with a funding URL for a specific workspace for the project in the current directory:
npm fund {{[-w|--workspace]}} {{workspace}}

Code Snippets

List dependencies with funding URL for the project in the current directory

npm fund

Open the funding URL for a specific package in the default web browser

npm fund {{package}}

List dependencies with a funding URL for a specific workspace for the project in the current directory

npm fund {{[-w|--workspace]}} {{workspace}}

Context

tldr-pages: common/npm fund

Revisions (0)

No revisions yet.