-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
76 changed files
with
406 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
npm-changelog(1) -- Changes | ||
=========================== | ||
|
||
## SYNOPSIS | ||
|
||
A brief history. | ||
|
||
## HISTORY | ||
|
||
### 1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -209,7 +209,7 @@ <h3 id="In-plain-english">In plain english</h3> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="npm.html">npm</a></li><li><a href="faq.html">npm faq</a></li><li><a href="help.html">npm help</a></li></ul> | ||
<ul><li><a href="npm.html">npm</a></li><li><a href="faq.html">faq</a></li><li><a href="help.html">help</a></li></ul> | ||
</div> | ||
<p id="footer"><a href="README.html">README</a> — [email protected]</p> | ||
<script> | ||
|
@@ -234,7 +234,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<body> | ||
<div id="wrapper"> | ||
<h1><a href="adduser.html">npm adduser</a></h1> <p>Add a registry user account</p> | ||
<h1><a href="adduser.html">adduser</a></h1> <p>Add a registry user account</p> | ||
|
||
<h2 id="SYNOPSIS">SYNOPSIS</h2> | ||
|
||
|
@@ -37,7 +37,7 @@ <h3 id="registry">registry</h3> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="registry.html">npm registry</a></li><li><a href="config.html">npm config</a></li><li><a href="owner.html">npm owner</a></li><li><a href="whoami.html">npm whoami</a></li></ul> | ||
<ul><li><a href="registry.html">registry</a></li><li><a href="config.html">config</a></li><li><a href="owner.html">owner</a></li><li><a href="whoami.html">whoami</a></li></ul> | ||
</div> | ||
<p id="footer">adduser — [email protected]</p> | ||
<script> | ||
|
@@ -62,7 +62,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<body> | ||
<div id="wrapper"> | ||
<h1><a href="owner.html">npm owner</a></h1> <p>Manage package owners</p> | ||
<h1><a href="owner.html">owner</a></h1> <p>Manage package owners</p> | ||
|
||
<h2 id="SYNOPSIS">SYNOPSIS</h2> | ||
|
||
|
@@ -16,6 +16,8 @@ <h2 id="SYNOPSIS">SYNOPSIS</h2> | |
|
||
<h2 id="DESCRIPTION">DESCRIPTION</h2> | ||
|
||
<p>Manage ownership of published packages.</p> | ||
|
||
<ul><li>ls: | ||
List all the users who have access to modify a package and push new versions. | ||
Handy when you need to know who to bug for help.</li><li>add: | ||
|
@@ -30,7 +32,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="publish.html">npm publish</a></li><li><a href="registry.html">npm registry</a></li><li><a href="adduser.html">npm adduser</a></li></ul> | ||
<ul><li><a href="publish.html">publish</a></li><li><a href="registry.html">registry</a></li><li><a href="adduser.html">adduser</a></li></ul> | ||
</div> | ||
<p id="footer">author — [email protected]</p> | ||
<script> | ||
|
@@ -55,7 +57,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<body> | ||
<div id="wrapper"> | ||
<h1><a href="bin.html">npm bin</a></h1> <p>Display npm bin folder</p> | ||
<h1><a href="bin.html">bin</a></h1> <p>Display npm bin folder</p> | ||
|
||
<h2 id="SYNOPSIS">SYNOPSIS</h2> | ||
|
||
|
@@ -18,7 +18,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="prefix.html">npm prefix</a></li><li><a href="root.html">npm root</a></li><li><a href="folders.html">npm folders</a></li><li><a href="config.html">npm config</a></li></ul> | ||
<ul><li><a href="prefix.html">prefix</a></li><li><a href="root.html">root</a></li><li><a href="folders.html">folders</a></li><li><a href="config.html">config</a></li></ul> | ||
</div> | ||
<p id="footer">bin — [email protected]</p> | ||
<script> | ||
|
@@ -43,7 +43,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<body> | ||
<div id="wrapper"> | ||
<h1><a href="build.html">npm build</a></h1> <p>Build a package</p> | ||
<h1><a href="build.html">build</a></h1> <p>Build a package</p> | ||
|
||
<h2 id="SYNOPSIS">SYNOPSIS</h2> | ||
|
||
|
@@ -23,7 +23,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="install.html">npm install</a></li><li><a href="link.html">npm link</a></li><li><a href="scripts.html">npm scripts</a></li><li><a href="json.html">npm json</a></li></ul> | ||
<ul><li><a href="install.html">install</a></li><li><a href="link.html">link</a></li><li><a href="scripts.html">scripts</a></li><li><a href="json.html">json</a></li></ul> | ||
</div> | ||
<p id="footer">build — [email protected]</p> | ||
<script> | ||
|
@@ -48,7 +48,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<body> | ||
<div id="wrapper"> | ||
<h1><a href="bundle.html">npm bundle</a></h1> <p>REMOVED</p> | ||
<h1><a href="bundle.html">bundle</a></h1> <p>REMOVED</p> | ||
|
||
<h2 id="DESCRIPTION">DESCRIPTION</h2> | ||
|
||
|
@@ -18,7 +18,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="install.html">npm install</a></li></ul> | ||
<ul><li><a href="install.html">install</a></li></ul> | ||
</div> | ||
<p id="footer">bundle — [email protected]</p> | ||
<script> | ||
|
@@ -43,7 +43,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<body> | ||
<div id="wrapper"> | ||
<h1><a href="cache.html">npm cache</a></h1> <p>install a package</p> | ||
<h1><a href="cache.html">cache</a></h1> <p>install a package</p> | ||
|
||
<h2 id="SYNOPSIS">SYNOPSIS</h2> | ||
|
||
|
@@ -21,6 +21,8 @@ <h2 id="SYNOPSIS">SYNOPSIS</h2> | |
|
||
<h2 id="DESCRIPTION">DESCRIPTION</h2> | ||
|
||
<p>Used to add, list, or clear the npm cache folder.</p> | ||
|
||
<ul><li><p>add: | ||
Add the specified package to the local cache. This command is primarily | ||
intended to be used internally by npm, but it can provide a way to | ||
|
@@ -62,7 +64,7 @@ <h3 id="cache">cache</h3> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="folders.html">npm folders</a></li><li><a href="config.html">npm config</a></li><li><a href="install.html">npm install</a></li><li><a href="publish.html">npm publish</a></li><li><a href="pack.html">npm pack</a></li></ul> | ||
<ul><li><a href="folders.html">folders</a></li><li><a href="config.html">config</a></li><li><a href="install.html">install</a></li><li><a href="publish.html">publish</a></li><li><a href="pack.html">pack</a></li></ul> | ||
</div> | ||
<p id="footer">cache — [email protected]</p> | ||
<script> | ||
|
@@ -87,7 +89,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,11 @@ | |
|
||
<body> | ||
<div id="wrapper"> | ||
<h1><a href="changelog.html">npm changelog</a></h1> <p>Changes</p> | ||
<h1><a href="changelog.html">changelog</a></h1> <p>Changes</p> | ||
|
||
<h2 id="SYNOPSIS">SYNOPSIS</h2> | ||
|
||
<p>A brief history.</p> | ||
|
||
<h2 id="HISTORY">HISTORY</h2> | ||
|
||
|
@@ -32,7 +36,7 @@ <h3 id="0-0">0.0</h3> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="npm.html">npm</a></li><li><a href="faq.html">npm faq</a></li></ul> | ||
<ul><li><a href="npm.html">npm</a></li><li><a href="faq.html">faq</a></li></ul> | ||
</div> | ||
<p id="footer">changelog — [email protected]</p> | ||
<script> | ||
|
@@ -57,7 +61,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<body> | ||
<div id="wrapper"> | ||
<h1><a href="coding-style.html">npm coding-style</a></h1> <p>npm's "funny" coding style</p> | ||
<h1><a href="coding-style.html">coding-style</a></h1> <p>npm's "funny" coding style</p> | ||
|
||
<h2 id="DESCRIPTION">DESCRIPTION</h2> | ||
|
||
|
@@ -155,7 +155,7 @@ <h2 id="Logging">Logging</h2> | |
occurs.</p> | ||
|
||
<p>Use appropriate log levels. The default log() function logs at the | ||
"info" level. See <code><a href="config.html">npm config</a></code> and search for "loglevel".</p> | ||
"info" level. See <code><a href="config.html">config</a></code> and search for "loglevel".</p> | ||
|
||
<h2 id="Case-naming-etc">Case, naming, etc.</h2> | ||
|
||
|
@@ -189,7 +189,7 @@ <h2 id="null-undefined-false-0">null, undefined, false, 0</h2> | |
|
||
<h2 id="SEE-ALSO">SEE ALSO</h2> | ||
|
||
<ul><li><a href="developers.html">npm developers</a></li><li><a href="faq.html">npm faq</a></li><li><a href="npm.html">npm</a></li></ul> | ||
<ul><li><a href="developers.html">developers</a></li><li><a href="faq.html">faq</a></li><li><a href="npm.html">npm</a></li></ul> | ||
</div> | ||
<p id="footer">coding-style — [email protected]</p> | ||
<script> | ||
|
@@ -214,7 +214,9 @@ <h2 id="SEE-ALSO">SEE ALSO</h2> | |
out += "</ul>" | ||
l -- | ||
} | ||
out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>" | ||
out += "<li><a href='#" + el.id + "'>" + | ||
( el.innerText || el.text || el.innerHTML) | ||
+ "</a>" | ||
return out | ||
}).join("\n") | ||
toc.id = "toc" | ||
|
Oops, something went wrong.