mirror of https://github.com/lukechilds/node.git
isaacs
12 years ago
131 changed files with 663 additions and 186 deletions
@ -0,0 +1,22 @@ |
|||
npm-stars(1) -- View packages marked as favorites |
|||
================================================= |
|||
|
|||
## SYNOPSIS |
|||
|
|||
npm stars |
|||
npm stars [username] |
|||
|
|||
## DESCRIPTION |
|||
|
|||
If you have starred a lot of neat things and want to find them again |
|||
quickly this command lets you do just that. |
|||
|
|||
You may also want to see your friend's favorite packages, in this case |
|||
you will most certainly enjoy this command. |
|||
|
|||
## SEE ALSO |
|||
|
|||
* npm-star(1) |
|||
* npm-view(1) |
|||
* npm-whoami(1) |
|||
* npm-adduser(1) |
@ -0,0 +1,60 @@ |
|||
<!doctype html> |
|||
<html> |
|||
<title>stars</title> |
|||
<meta http-equiv="content-type" value="text/html;utf-8"> |
|||
<link rel="stylesheet" type="text/css" href="../static/style.css"> |
|||
|
|||
<body> |
|||
<div id="wrapper"> |
|||
<h1><a href="../doc/stars.html">stars</a></h1> <p>View packages marked as favorites</p> |
|||
|
|||
<h2 id="SYNOPSIS">SYNOPSIS</h2> |
|||
|
|||
<pre><code>npm stars |
|||
npm stars [username]</code></pre> |
|||
|
|||
<h2 id="DESCRIPTION">DESCRIPTION</h2> |
|||
|
|||
<p>If you have starred a lot of neat things and want to find them again |
|||
quickly this command lets you do just that.</p> |
|||
|
|||
<p>You may also want to see your friend's favorite packages, in this case |
|||
you will most certainly enjoy this command.</p> |
|||
|
|||
<h2 id="SEE-ALSO">SEE ALSO</h2> |
|||
|
|||
<ul><li><a href="../doc/star.html">star(1)</a></li><li><a href="../doc/view.html">view(1)</a></li><li><a href="../doc/whoami.html">whoami(1)</a></li><li><a href="../doc/adduser.html">adduser(1)</a></li></ul> |
|||
</div> |
|||
<p id="footer">stars — npm@1.2.11</p> |
|||
<script> |
|||
;(function () { |
|||
var wrapper = document.getElementById("wrapper") |
|||
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0) |
|||
.filter(function (el) { |
|||
return el.parentNode === wrapper |
|||
&& el.tagName.match(/H[1-6]/) |
|||
&& el.id |
|||
}) |
|||
var l = 2 |
|||
, toc = document.createElement("ul") |
|||
toc.innerHTML = els.map(function (el) { |
|||
var i = el.tagName.charAt(1) |
|||
, out = "" |
|||
while (i > l) { |
|||
out += "<ul>" |
|||
l ++ |
|||
} |
|||
while (i < l) { |
|||
out += "</ul>" |
|||
l -- |
|||
} |
|||
out += "<li><a href='#" + el.id + "'>" + |
|||
( el.innerText || el.text || el.innerHTML) |
|||
+ "</a>" |
|||
return out |
|||
}).join("\n") |
|||
toc.id = "toc" |
|||
document.body.appendChild(toc) |
|||
})() |
|||
</script> |
|||
</body></html> |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue