File tree Expand file tree Collapse file tree 3 files changed +53
-2
lines changed Expand file tree Collapse file tree 3 files changed +53
-2
lines changed Original file line number Diff line number Diff line change @@ -8,20 +8,33 @@ description: Mark your favorite packages
8
8
9
9
``` bash
10
10
npm star [< pkg> ...]
11
- npm unstar [< pkg> ...]
12
11
```
13
12
14
13
### Description
15
14
16
15
"Starring" a package means that you have some interest in it. It's
17
16
a vaguely positive way to show that you care.
18
17
18
+ It's a boolean thing. Starring repeatedly has no additional effect.
19
+
20
+ ### More
21
+
22
+ There's also these extra commands to help you manage your favorite packages:
23
+
24
+ #### Unstar
25
+
26
+ You can also "unstar" a package using [ ` npm unstar ` ] ( /commands/npm-unstar )
27
+
19
28
"Unstarring" is the same thing, but in reverse.
20
29
21
- It's a boolean thing. Starring repeatedly has no additional effect.
30
+ #### Listing stars
31
+
32
+ You can see all your starred packages using [ ` npm stars ` ] ( /commands/npm-stars )
22
33
23
34
### See Also
24
35
36
+ * [ npm unstar] ( /commands/npm-unstar )
37
+ * [ npm stars] ( /commands/npm-stars )
25
38
* [ npm view] ( /commands/npm-view )
26
39
* [ npm whoami] ( /commands/npm-whoami )
27
40
* [ npm adduser] ( /commands/npm-adduser )
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ you will most certainly enjoy this command.
20
20
### See Also
21
21
22
22
* [ npm star] ( /commands/npm-star )
23
+ * [ npm unstar] ( /commands/npm-unstar )
23
24
* [ npm view] ( /commands/npm-view )
24
25
* [ npm whoami] ( /commands/npm-whoami )
25
26
* [ npm adduser] ( /commands/npm-adduser )
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : npm-unstar
3
+ section : 1
4
+ description : Remove an item from your favorite packages
5
+ ---
6
+
7
+ ### Synopsis
8
+
9
+ ``` bash
10
+ npm unstar [< pkg> ...]
11
+ ```
12
+
13
+ ### Description
14
+
15
+ "Unstarring" a package is the opposite of [ ` npm star ` ] ( /commands/npm-star ) ,
16
+ it removes an item from your list of favorite packages.
17
+
18
+ ### More
19
+
20
+ There's also these extra commands to help you manage your favorite packages:
21
+
22
+ #### Star
23
+
24
+ You can "star" a package using [ ` npm star ` ] ( /commands/npm-star )
25
+
26
+ #### Listing stars
27
+
28
+ You can see all your starred packages using [ ` npm stars ` ] ( /commands/npm-stars )
29
+
30
+ ### See Also
31
+
32
+ * [ npm star] ( /commands/npm-star )
33
+ * [ npm stars] ( /commands/npm-stars )
34
+ * [ npm view] ( /commands/npm-view )
35
+ * [ npm whoami] ( /commands/npm-whoami )
36
+ * [ npm adduser] ( /commands/npm-adduser )
37
+
You can’t perform that action at this time.
0 commit comments