3 <title>npm-star</title>
4 <meta http-equiv="content-type" value="text/html;utf-8">
5 <link rel="stylesheet" type="text/css" href="../../static/style.css">
9 <h1><a href="../cli/npm-star.html">npm-star</a></h1> <p>Mark your favorite packages</p>
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
13 <pre><code>npm star <pkgname> [<pkg>, ...]
14 npm unstar <pkgname> [<pkg>, ...]</code></pre>
16 <h2 id="DESCRIPTION">DESCRIPTION</h2>
18 <p>"Starring" a package means that you have some interest in it. It's
19 a vaguely positive way to show that you care.</p>
21 <p>"Unstarring" is the same thing, but in reverse.</p>
23 <p>It's a boolean thing. Starring repeatedly has no additional effect.</p>
25 <h2 id="SEE-ALSO">SEE ALSO</h2>
27 <ul><li><a href="../cli/npm-view.html">npm-view(1)</a></li><li><a href="../cli/npm-whoami.html">npm-whoami(1)</a></li><li><a href="../cli/npm-adduser.html">npm-adduser(1)</a></li></ul>
29 <p id="footer">npm-star — npm@1.3.19</p>
32 var wrapper = document.getElementById("wrapper")
33 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
34 .filter(function (el) {
35 return el.parentNode === wrapper
36 && el.tagName.match(/H[1-6]/)
40 , toc = document.createElement("ul")
41 toc.innerHTML = els.map(function (el) {
42 var i = el.tagName.charAt(1)
52 out += "<li><a href='#" + el.id + "'>" +
53 ( el.innerText || el.text || el.innerHTML)
58 document.body.appendChild(toc)