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

npm view — View registry information about a package. More information: <https://docs.npmjs.com/cli/npm-view/>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
registrycommandcliinformationaboutpackagenpm viewview

Problem

How to use the npm view command: View registry information about a package. More information: <https://docs.npmjs.com/cli/npm-view/>.

Solution

npm view — View registry information about a package. More information: <https://docs.npmjs.com/cli/npm-view/>.

View information about the latest version of a package:
npm {{[v|view]}} {{package}}


View information about a specific version of a package:
npm {{[v|view]}} {{package}}@{{version}}


View all available versions of a package:
npm {{[v|view]}} {{package}} versions


View the description of a package:
npm {{[v|view]}} {{package}} description


View the dependencies of the latest version of a package:
npm {{[v|view]}} {{package}} dependencies


View the repository URL of a package:
npm {{[v|view]}} {{package}} repository


View the maintainers of a package:
npm {{[v|view]}} {{package}} maintainers

Code Snippets

View information about the latest version of a package

npm {{[v|view]}} {{package}}

View information about a specific version of a package

npm {{[v|view]}} {{package}}@{{version}}

View all available versions of a package

npm {{[v|view]}} {{package}} versions

View the description of a package

npm {{[v|view]}} {{package}} description

View the dependencies of the latest version of a package

npm {{[v|view]}} {{package}} dependencies

Context

tldr-pages: common/npm view

Revisions (0)

No revisions yet.