From 63f1642391002134397ee63cc87fde7cf77bef3c Mon Sep 17 00:00:00 2001 From: ashborn <121210083+Bucke200@users.noreply.github.com> Date: Sat, 19 Oct 2024 16:02:34 +0530 Subject: [PATCH] npm-view: add page (#14269) * Create npm-view.md * Update npm-view.md --- pages/common/npm-view.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/npm-view.md diff --git a/pages/common/npm-view.md b/pages/common/npm-view.md new file mode 100644 index 0000000000..fb9218ad19 --- /dev/null +++ b/pages/common/npm-view.md @@ -0,0 +1,32 @@ +# npm view + +> View registry information about a package. +> More information: . + +- View information about the latest version of a package: + +`npm view {{package}}` + +- View information about a specific version of a package: + +`npm view {{package}}@{{version}}` + +- View all available versions of a package: + +`npm view {{package}} versions` + +- View the description of a package: + +`npm view {{package}} description` + +- View the dependencies of the latest version of a package: + +`npm view {{package}} dependencies` + +- View the repository URL of a package: + +`npm view {{package}} repository` + +- View the maintainers of a package: + +`npm view {{package}} maintainers`