Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuy Adorno <ruyadorno@hotmail.com>2020-11-27 20:22:50 +0300
committerRich Trott <rtrott@gmail.com>2020-11-30 16:39:17 +0300
commit709ada5c3a8fce70f6a7c15d65eeab0cde5abc4e (patch)
treed4bc8f649ba26aac242f34d764083fba0c91f9ff /deps/npm/docs/content/commands/npm-unstar.md
parentdedd0612f010d7654ff90b680bd43ce563faa270 (diff)
deps: upgrade npm to 7.0.15
PR-URL: https://github.com/nodejs/node/pull/36293 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'deps/npm/docs/content/commands/npm-unstar.md')
-rw-r--r--deps/npm/docs/content/commands/npm-unstar.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/deps/npm/docs/content/commands/npm-unstar.md b/deps/npm/docs/content/commands/npm-unstar.md
new file mode 100644
index 00000000000..632b1b5e336
--- /dev/null
+++ b/deps/npm/docs/content/commands/npm-unstar.md
@@ -0,0 +1,36 @@
+---
+title: npm-unstar
+section: 1
+description: Remove an item from your favorite packages
+---
+
+### Synopsis
+
+```bash
+npm unstar [<pkg>...]
+```
+
+### Description
+
+"Unstarring" a package is the opposite of [`npm star`](/commands/npm-star),
+it removes an item from your list of favorite packages.
+
+### More
+
+There's also these extra commands to help you manage your favorite packages:
+
+#### Star
+
+You can "star" a package using [`npm star`](/commands/npm-star)
+
+#### Listing stars
+
+You can see all your starred packages using [`npm stars`](/commands/npm-stars)
+
+### See Also
+
+* [npm star](/commands/npm-star)
+* [npm stars](/commands/npm-stars)
+* [npm view](/commands/npm-view)
+* [npm whoami](/commands/npm-whoami)
+* [npm adduser](/commands/npm-adduser)