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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/commands/npm-star.md')
-rw-r--r--docs/content/commands/npm-star.md17
1 files changed, 15 insertions, 2 deletions
diff --git a/docs/content/commands/npm-star.md b/docs/content/commands/npm-star.md
index c68a057aa..aab6e1077 100644
--- a/docs/content/commands/npm-star.md
+++ b/docs/content/commands/npm-star.md
@@ -8,7 +8,6 @@ description: Mark your favorite packages
```bash
npm star [<pkg>...]
-npm unstar [<pkg>...]
```
### Description
@@ -16,12 +15,26 @@ npm unstar [<pkg>...]
"Starring" a package means that you have some interest in it. It's
a vaguely positive way to show that you care.
+It's a boolean thing. Starring repeatedly has no additional effect.
+
+### More
+
+There's also these extra commands to help you manage your favorite packages:
+
+#### Unstar
+
+You can also "unstar" a package using [`npm unstar`](/commands/npm-unstar)
+
"Unstarring" is the same thing, but in reverse.
-It's a boolean thing. Starring repeatedly has no additional effect.
+#### Listing stars
+
+You can see all your starred packages using [`npm stars`](/commands/npm-stars)
### See Also
+* [npm unstar](/commands/npm-unstar)
+* [npm stars](/commands/npm-stars)
* [npm view](/commands/npm-view)
* [npm whoami](/commands/npm-whoami)
* [npm adduser](/commands/npm-adduser)