parent
d5feb1c280
commit
61764613d1
2
deps/npm/.gitmodules
vendored
2
deps/npm/.gitmodules
vendored
@ -33,7 +33,7 @@
|
||||
url = https://github.com/isaacs/node-which.git
|
||||
[submodule "node_modules/request"]
|
||||
path = node_modules/request
|
||||
url = https://github.com/isaacs/request.git
|
||||
url = https://github.com/mikeal/request.git
|
||||
[submodule "node_modules/tar"]
|
||||
path = node_modules/tar
|
||||
url = git://github.com/isaacs/node-tar.git
|
||||
|
1
deps/npm/.npmignore
vendored
1
deps/npm/.npmignore
vendored
@ -9,3 +9,4 @@ node_modules/ronn
|
||||
node_modules/.bin
|
||||
npm-debug.log
|
||||
./npmrc
|
||||
.gitignore
|
||||
|
1
deps/npm/CHANGES
vendored
1
deps/npm/CHANGES
vendored
@ -1 +0,0 @@
|
||||
doc/cli/changelog.md
|
122
deps/npm/README.md
vendored
122
deps/npm/README.md
vendored
@ -9,12 +9,31 @@ Much more info available via `npm help` once it's installed.
|
||||
|
||||
## IMPORTANT
|
||||
|
||||
**You need node v0.4 or higher to run this program.**
|
||||
**You need node v0.6 or higher to run this program.**
|
||||
|
||||
To install an old **and unsupported** version of npm that works on node 0.3
|
||||
and prior, clone the git repo and dig through the old tags and branches.
|
||||
|
||||
## Simple Install (Unix only, sorry)
|
||||
## Super Easy Install
|
||||
|
||||
npm comes with node now.
|
||||
|
||||
### Windows Computers
|
||||
|
||||
Get the MSI. npm is in it.
|
||||
|
||||
### Apple Macintosh Computers
|
||||
|
||||
Get the pkg. npm is in it.
|
||||
|
||||
### Other Sorts of Unices
|
||||
|
||||
Run `make install`. npm will be installed with node.
|
||||
|
||||
If you want a more fancy pants install (a different version, customized
|
||||
paths, etc.) then read on.
|
||||
|
||||
## Fancy Install (Unix)
|
||||
|
||||
To install npm with one command, do this:
|
||||
|
||||
@ -28,72 +47,37 @@ To say "yes" to the 0.x cleanup, but skip the prompt:
|
||||
|
||||
curl http://npmjs.org/install.sh | clean=yes sh
|
||||
|
||||
If you get permission errors, see the section below, entitled
|
||||
"Permission Errors on Installation".
|
||||
If you get permission errors, you'll need to **run** the script as root.
|
||||
(Note, just putting `sudo` in front of the `curl` will **fetch** the script
|
||||
as root.)
|
||||
|
||||
## Installing on Windows -- Experimental
|
||||
### Slightly Fancier
|
||||
|
||||
Yes, this sucks. A convenient one-liner is coming soon.
|
||||
You can set any npm configuration params with that script:
|
||||
|
||||
### Step 1: Drop the node.exe somewhere
|
||||
curl http://npmjs.org/install.sh | npm_config_prefix=/some/path sh
|
||||
|
||||
You will probably need the latest version of node, **at least** version
|
||||
`0.5.8` or higher. You can get it from
|
||||
<http://nodejs.org/dist/v0.5.8/node.exe>.
|
||||
Or, you can run it in uber-debuggery mode:
|
||||
|
||||
### Step 2 (optional): Update the %PATH% environment variable
|
||||
curl http://npmjs.org/install.sh | npm_debug=1 sh
|
||||
|
||||
Update your `%PATH%` environment variable in System Properties:
|
||||
Advanced: Environment, so that it includes the `bin` folder you chose.
|
||||
The entries are separated by semicolons.
|
||||
### Even Fancier
|
||||
|
||||
You *may* be able to do this from the command line using `set` and
|
||||
`setx`. `cd` into the `bin` folder you created in step 1, and do this:
|
||||
Get the code with git. Use `make` to build the docs and do other stuff.
|
||||
If you plan on hacking on npm, `make link` is your friend.
|
||||
|
||||
set path=%PATH%;%CD%
|
||||
setx path "%PATH%"
|
||||
If you've got the npm source code, you can also semi-permanently set
|
||||
arbitrary config keys using the `./configure --key=val ...`, and then
|
||||
run npm commands by doing `node cli.js <cmd> <args>`. (This is helpful
|
||||
for testing, or running stuff without actually installing npm itself.)
|
||||
|
||||
This will have the added advantage that you'll be able to simply type
|
||||
`npm` or `node` in any project folder to access those commands.
|
||||
## Fancy Windows Install
|
||||
|
||||
If you decide not to update the PATH, and put the node.exe file in
|
||||
`C:\node\node.exe`, then the npm executable will end up `C:\node\npm.cmd`,
|
||||
and you'll have to type `C:\node\npm <command>` to use it.
|
||||
You can download a zip file from <http://npmjs.org/dist/>, and unpack it
|
||||
in the same folder where node.exe lives.
|
||||
|
||||
### Step 3: Install git
|
||||
|
||||
If you don't already have git,
|
||||
[install it](https://git.wiki.kernel.org/index.php/MSysGit:InstallMSysGit).
|
||||
|
||||
Run `git --version` to make sure that it's at least version 1.7.6.
|
||||
|
||||
### Step 4: install npm
|
||||
|
||||
Lastly, **after** node.exe, git, and your %PATH% have *all* been set up
|
||||
properly, install npm itself:
|
||||
|
||||
git config --system http.sslcainfo /bin/curl-ca-bundle.crt
|
||||
git clone --recursive git://github.com/isaacs/npm.git
|
||||
cd npm
|
||||
node cli.js install npm -gf
|
||||
|
||||
## Permission Errors (`EACCES` or `EACCESS`) on Installation
|
||||
|
||||
On Windows, you may need to run the command prompt in elevated
|
||||
permission mode. (Right-click on cmd.exe, Run as Administrator.)
|
||||
|
||||
On Unix, you may need to run as root, or use `sudo`.
|
||||
|
||||
**Note**: You would need to `sudo` the `sh`, **not** the `curl`. Fetching
|
||||
stuff from the internet typically doesn't require elevated permissions.
|
||||
Running it might.
|
||||
|
||||
I highly recommend that you first download the file, and make sure that
|
||||
it is what you expect, and *then* run it.
|
||||
|
||||
curl -O http://npmjs.org/install.sh
|
||||
# inspect file..
|
||||
sudo sh install.sh
|
||||
If that's not fancy enough for you, then you can fetch the code with
|
||||
git, and mess with it directly.
|
||||
|
||||
## Installing on Cygwin
|
||||
|
||||
@ -116,12 +100,6 @@ terminal, then you've already got the code. Just do:
|
||||
|
||||
and npm will install itself.
|
||||
|
||||
If you don't have make, and don't have curl or git, and ALL you have is
|
||||
this code and node, you can probably do this:
|
||||
|
||||
git submodule update --init --recursive
|
||||
sudo node ./cli.js install -g
|
||||
|
||||
Note that github tarballs **do not contain submodules**, so
|
||||
those won't work. You'll have to also fetch the appropriate submodules
|
||||
listed in the .gitmodules file.
|
||||
@ -218,8 +196,7 @@ help config` to learn about all the options you can set there.
|
||||
## More Docs
|
||||
|
||||
Check out the [docs](http://npmjs.org/doc/),
|
||||
especially the
|
||||
[faq](http://npmjs.org/doc/faq.html).
|
||||
especially the [faq](http://npmjs.org/doc/faq.html).
|
||||
|
||||
You can use the `npm help` command to read any of them.
|
||||
|
||||
@ -266,6 +243,21 @@ process for published modules.
|
||||
|
||||
If this concerns you, inspect the source before using packages.
|
||||
|
||||
## BUGS
|
||||
|
||||
When you find issues, please report them:
|
||||
|
||||
* web:
|
||||
<http://github.com/isaacs/npm/issues>
|
||||
* email:
|
||||
<npm-@googlegroups.com>
|
||||
|
||||
Be sure to include *all* of the output from the npm command that didn't work
|
||||
as expected. The `npm-debug.log` file is also helpful to provide.
|
||||
|
||||
You can also look for isaacs in #node.js on irc://irc.freenode.net. He
|
||||
will no doubt tell you to put the output in a gist or email.
|
||||
|
||||
## SEE ALSO
|
||||
|
||||
* npm(1)
|
||||
|
1
deps/npm/doc/api/author.md
vendored
1
deps/npm/doc/api/author.md
vendored
@ -1 +0,0 @@
|
||||
owner.md
|
1
deps/npm/doc/api/find.md
vendored
1
deps/npm/doc/api/find.md
vendored
@ -1 +0,0 @@
|
||||
ls.md
|
1
deps/npm/doc/api/get.md
vendored
1
deps/npm/doc/api/get.md
vendored
@ -1 +0,0 @@
|
||||
config.md
|
1
deps/npm/doc/api/home.md
vendored
1
deps/npm/doc/api/home.md
vendored
@ -1 +0,0 @@
|
||||
docs.md
|
1
deps/npm/doc/api/list.md
vendored
1
deps/npm/doc/api/list.md
vendored
@ -1 +0,0 @@
|
||||
ls.md
|
1
deps/npm/doc/api/ln.md
vendored
1
deps/npm/doc/api/ln.md
vendored
@ -1 +0,0 @@
|
||||
link.md
|
1
deps/npm/doc/api/rm.md
vendored
1
deps/npm/doc/api/rm.md
vendored
@ -1 +0,0 @@
|
||||
uninstall.md
|
1
deps/npm/doc/api/set.md
vendored
1
deps/npm/doc/api/set.md
vendored
@ -1 +0,0 @@
|
||||
config.md
|
1
deps/npm/doc/cli/author.md
vendored
1
deps/npm/doc/cli/author.md
vendored
@ -1 +0,0 @@
|
||||
owner.md
|
14
deps/npm/doc/cli/config.md
vendored
14
deps/npm/doc/cli/config.md
vendored
@ -212,7 +212,7 @@ See also the `strict-ssl` config.
|
||||
|
||||
### cache
|
||||
|
||||
* Default: Windows: `~/npm-cache`, Posix: `~/.npm`
|
||||
* Default: Windows: `%APPDATA%\npm-cache`, Posix: `~/.npm`
|
||||
* Type: path
|
||||
|
||||
The location of npm's cache directory. See `npm-cache(1)`
|
||||
@ -474,6 +474,18 @@ Set to true to run in "production" mode.
|
||||
local `npm install` without any arguments.
|
||||
2. Set the NODE_ENV="production" for lifecycle scripts.
|
||||
|
||||
### proprietary-attribs
|
||||
|
||||
* Default: true
|
||||
* Type: Boolean
|
||||
|
||||
Whether or not to include proprietary extended attributes in the
|
||||
tarballs created by npm.
|
||||
|
||||
Unless you are expecting to unpack package tarballs with something other
|
||||
than npm -- particularly a very outdated tar implementation -- leave
|
||||
this as true.
|
||||
|
||||
### proxy
|
||||
|
||||
* Default: `HTTP_PROXY` or `http_proxy` environment variable, or null
|
||||
|
1
deps/npm/doc/cli/find.md
vendored
1
deps/npm/doc/cli/find.md
vendored
@ -1 +0,0 @@
|
||||
search.md
|
1
deps/npm/doc/cli/get.md
vendored
1
deps/npm/doc/cli/get.md
vendored
@ -1 +0,0 @@
|
||||
config.md
|
1
deps/npm/doc/cli/global.md
vendored
1
deps/npm/doc/cli/global.md
vendored
@ -1 +0,0 @@
|
||||
folders.md
|
1
deps/npm/doc/cli/home.md
vendored
1
deps/npm/doc/cli/home.md
vendored
@ -1 +0,0 @@
|
||||
docs.md
|
1
deps/npm/doc/cli/ln.md
vendored
1
deps/npm/doc/cli/ln.md
vendored
@ -1 +0,0 @@
|
||||
link.md
|
1
deps/npm/doc/cli/ls.md
vendored
1
deps/npm/doc/cli/ls.md
vendored
@ -1 +0,0 @@
|
||||
list.md
|
4
deps/npm/doc/cli/registry.md
vendored
4
deps/npm/doc/cli/registry.md
vendored
@ -13,9 +13,9 @@ account information.
|
||||
|
||||
The official public npm registry is at <http://registry.npmjs.org/>. It
|
||||
is powered by a CouchDB database at
|
||||
<http://isaacs.couchone.com/registry>. The code for the couchapp is
|
||||
<http://isaacs.iriscouch.com/registry>. The code for the couchapp is
|
||||
available at <http://github.com/isaacs/npmjs.org>. npm user accounts
|
||||
are CouchDB users, stored in the <http://isaacs.couchone.com/_users>
|
||||
are CouchDB users, stored in the <http://isaacs.iriscouch.com/_users>
|
||||
database.
|
||||
|
||||
The registry URL is supplied by the `registry` config parameter. See
|
||||
|
1
deps/npm/doc/cli/rm.md
vendored
1
deps/npm/doc/cli/rm.md
vendored
@ -1 +0,0 @@
|
||||
uninstall.md
|
1
deps/npm/doc/cli/set.md
vendored
1
deps/npm/doc/cli/set.md
vendored
@ -1 +0,0 @@
|
||||
config.md
|
2
deps/npm/html/api/author.html
vendored
2
deps/npm/html/api/author.html
vendored
@ -34,7 +34,7 @@ that is not implemented at this time.</p>
|
||||
|
||||
<ul><li><a href="../api/publish.html">publish(3)</a></li><li><a href="../doc/registry.html">registry(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">author — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">author — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/bin.html
vendored
2
deps/npm/html/api/bin.html
vendored
@ -19,7 +19,7 @@
|
||||
<p>This function should not be used programmatically. Instead, just refer
|
||||
to the <code>npm.bin</code> member.</p>
|
||||
</div>
|
||||
<p id="footer">bin — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">bin — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/bugs.html
vendored
2
deps/npm/html/api/bugs.html
vendored
@ -25,7 +25,7 @@ optional version number.</p>
|
||||
<p>This command will launch a browser, so this command may not be the most
|
||||
friendly for programmatic use.</p>
|
||||
</div>
|
||||
<p id="footer">bugs — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">bugs — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/commands.html
vendored
2
deps/npm/html/api/commands.html
vendored
@ -28,7 +28,7 @@ usage, or <code>man 3 npm-<command></code> for programmatic usage.</p>
|
||||
|
||||
<ul><li><a href="../doc/index.html">index(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">commands — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">commands — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/config.html
vendored
2
deps/npm/html/api/config.html
vendored
@ -33,7 +33,7 @@ functions instead.</p>
|
||||
|
||||
<ul><li><a href="../api/npm.html">npm(3)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">config — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">config — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/deprecate.html
vendored
2
deps/npm/html/api/deprecate.html
vendored
@ -30,7 +30,7 @@ install the package.</p></li></ul>
|
||||
|
||||
<ul><li><a href="../api/publish.html">publish(3)</a></li><li><a href="../api/unpublish.html">unpublish(3)</a></li><li><a href="../doc/registry.html">registry(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">deprecate — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">deprecate — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/docs.html
vendored
2
deps/npm/html/api/docs.html
vendored
@ -25,7 +25,7 @@ optional version number.</p>
|
||||
<p>This command will launch a browser, so this command may not be the most
|
||||
friendly for programmatic use.</p>
|
||||
</div>
|
||||
<p id="footer">docs — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">docs — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/edit.html
vendored
2
deps/npm/html/api/edit.html
vendored
@ -30,7 +30,7 @@ to open. The package can optionally have a version number attached.</p>
|
||||
<p>Since this command opens an editor in a new process, be careful about where
|
||||
and how this is used.</p>
|
||||
</div>
|
||||
<p id="footer">edit — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">edit — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/explore.html
vendored
2
deps/npm/html/api/explore.html
vendored
@ -24,7 +24,7 @@ sure to use <code>npm rebuild <pkg></code> if you make any changes.</p>
|
||||
|
||||
<p>The first element in the 'args' parameter must be a package name. After that is the optional command, which can be any number of strings. All of the strings will be combined into one, space-delimited command.</p>
|
||||
</div>
|
||||
<p id="footer">explore — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">explore — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/find.html
vendored
2
deps/npm/html/api/find.html
vendored
@ -53,7 +53,7 @@ project.</p>
|
||||
This means that if a submodule a same dependency as a parent module, then the
|
||||
dependency will only be output once.</p>
|
||||
</div>
|
||||
<p id="footer">find — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">find — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/get.html
vendored
2
deps/npm/html/api/get.html
vendored
@ -33,7 +33,7 @@ functions instead.</p>
|
||||
|
||||
<ul><li><a href="../api/npm.html">npm(3)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">get — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">get — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/help-search.html
vendored
2
deps/npm/html/api/help-search.html
vendored
@ -32,7 +32,7 @@ Name of the file that matched</li></ul>
|
||||
|
||||
<p>The silent parameter is not neccessary not used, but it may in the future.</p>
|
||||
</div>
|
||||
<p id="footer">help-search — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">help-search — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/home.html
vendored
2
deps/npm/html/api/home.html
vendored
@ -25,7 +25,7 @@ optional version number.</p>
|
||||
<p>This command will launch a browser, so this command may not be the most
|
||||
friendly for programmatic use.</p>
|
||||
</div>
|
||||
<p id="footer">home — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">home — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/init.html
vendored
2
deps/npm/html/api/init.html
vendored
@ -35,7 +35,7 @@ then go ahead and use this programmatically.</p>
|
||||
|
||||
<p><a href="../doc/json.html">json(1)</a></p>
|
||||
</div>
|
||||
<p id="footer">init — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">init — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/install.html
vendored
2
deps/npm/html/api/install.html
vendored
@ -25,7 +25,7 @@ the name of a package to be installed.</p>
|
||||
<p>Finally, 'callback' is a function that will be called when all packages have been
|
||||
installed or when an error has been encountered.</p>
|
||||
</div>
|
||||
<p id="footer">install — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">install — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/link.html
vendored
2
deps/npm/html/api/link.html
vendored
@ -39,7 +39,7 @@ npm.commands.link('redis', cb) # link-install the package</code></pre>
|
||||
<p>Now, any changes to the redis package will be reflected in
|
||||
the package in the current working directory</p>
|
||||
</div>
|
||||
<p id="footer">link — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">link — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/list.html
vendored
2
deps/npm/html/api/list.html
vendored
@ -53,7 +53,7 @@ project.</p>
|
||||
This means that if a submodule a same dependency as a parent module, then the
|
||||
dependency will only be output once.</p>
|
||||
</div>
|
||||
<p id="footer">list — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">list — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/ln.html
vendored
2
deps/npm/html/api/ln.html
vendored
@ -39,7 +39,7 @@ npm.commands.link('redis', cb) # link-install the package</code></pre>
|
||||
<p>Now, any changes to the redis package will be reflected in
|
||||
the package in the current working directory</p>
|
||||
</div>
|
||||
<p id="footer">ln — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">ln — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/load.html
vendored
2
deps/npm/html/api/load.html
vendored
@ -32,7 +32,7 @@ config object.</p>
|
||||
|
||||
<p>For a list of all the available command-line configs, see <code>npm help config</code></p>
|
||||
</div>
|
||||
<p id="footer">load — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">load — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/ls.html
vendored
2
deps/npm/html/api/ls.html
vendored
@ -53,7 +53,7 @@ project.</p>
|
||||
This means that if a submodule a same dependency as a parent module, then the
|
||||
dependency will only be output once.</p>
|
||||
</div>
|
||||
<p id="footer">ls — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">ls — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
4
deps/npm/html/api/npm.html
vendored
4
deps/npm/html/api/npm.html
vendored
@ -24,7 +24,7 @@ npm.load(configObject, function (er, npm) {
|
||||
|
||||
<h2 id="VERSION">VERSION</h2>
|
||||
|
||||
<p>1.1.0-alpha-2</p>
|
||||
<p>1.1.0-alpha-5</p>
|
||||
|
||||
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
||||
|
||||
@ -91,7 +91,7 @@ method names. Use the <code>npm.deref</code> method to find the real name.</p>
|
||||
|
||||
<pre><code>var cmd = npm.deref("unp") // cmd === "unpublish"</code></pre>
|
||||
</div>
|
||||
<p id="footer">npm — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">npm — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/outdated.html
vendored
2
deps/npm/html/api/outdated.html
vendored
@ -19,7 +19,7 @@ currently outdated.</p>
|
||||
|
||||
<p>If the 'packages' parameter is left out, npm will check all packages.</p>
|
||||
</div>
|
||||
<p id="footer">outdated — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">outdated — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/owner.html
vendored
2
deps/npm/html/api/owner.html
vendored
@ -34,7 +34,7 @@ that is not implemented at this time.</p>
|
||||
|
||||
<ul><li><a href="../api/publish.html">publish(3)</a></li><li><a href="../doc/registry.html">registry(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">owner — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">owner — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/pack.html
vendored
2
deps/npm/html/api/pack.html
vendored
@ -25,7 +25,7 @@ overwritten the second time.</p>
|
||||
|
||||
<p>If no arguments are supplied, then npm packs the current package folder.</p>
|
||||
</div>
|
||||
<p id="footer">pack — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">pack — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/prefix.html
vendored
2
deps/npm/html/api/prefix.html
vendored
@ -21,7 +21,7 @@
|
||||
|
||||
<p>This function is not useful programmatically</p>
|
||||
</div>
|
||||
<p id="footer">prefix — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">prefix — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/prune.html
vendored
2
deps/npm/html/api/prune.html
vendored
@ -23,7 +23,7 @@
|
||||
<p>Extraneous packages are packages that are not listed on the parent
|
||||
package's dependencies list.</p>
|
||||
</div>
|
||||
<p id="footer">prune — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">prune — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/publish.html
vendored
2
deps/npm/html/api/publish.html
vendored
@ -32,7 +32,7 @@ the registry. Overwrites when the "force" environment variable is set.</p>
|
||||
|
||||
<ul><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/adduser.html">adduser(1)</a></li><li><a href="../api/owner.html">owner(3)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">publish — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">publish — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/rebuild.html
vendored
2
deps/npm/html/api/rebuild.html
vendored
@ -22,7 +22,7 @@ the new binary. If no 'packages' parameter is specify, every package will be reb
|
||||
|
||||
<p>See <code>npm help build</code></p>
|
||||
</div>
|
||||
<p id="footer">rebuild — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">rebuild — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/restart.html
vendored
2
deps/npm/html/api/restart.html
vendored
@ -27,7 +27,7 @@ in the <code>packages</code> parameter.</p>
|
||||
|
||||
<ul><li><a href="../api/start.html">start(3)</a></li><li><a href="../api/stop.html">stop(3)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">restart — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">restart — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/rm.html
vendored
2
deps/npm/html/api/rm.html
vendored
@ -22,7 +22,7 @@ the name of a package to be uninstalled.</p>
|
||||
<p>Finally, 'callback' is a function that will be called when all packages have been
|
||||
uninstalled or when an error has been encountered.</p>
|
||||
</div>
|
||||
<p id="footer">rm — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">rm — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/root.html
vendored
2
deps/npm/html/api/root.html
vendored
@ -21,7 +21,7 @@
|
||||
|
||||
<p>This function is not useful programmatically.</p>
|
||||
</div>
|
||||
<p id="footer">root — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">root — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/run-script.html
vendored
2
deps/npm/html/api/run-script.html
vendored
@ -29,7 +29,7 @@ assumed to be the command to run. All other elements are ignored.</p>
|
||||
|
||||
<ul><li><a href="../doc/scripts.html">scripts(1)</a></li><li><a href="../api/test.html">test(3)</a></li><li><a href="../api/start.html">start(3)</a></li><li><a href="../api/restart.html">restart(3)</a></li><li><a href="../api/stop.html">stop(3)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">run-script — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">run-script — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/search.html
vendored
2
deps/npm/html/api/search.html
vendored
@ -32,7 +32,7 @@ excluded term (the "searchexclude" config). The search is case insensitive
|
||||
and doesn't try to read your mind (it doesn't do any verb tense matching or the
|
||||
like).</p>
|
||||
</div>
|
||||
<p id="footer">search — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">search — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/set.html
vendored
2
deps/npm/html/api/set.html
vendored
@ -33,7 +33,7 @@ functions instead.</p>
|
||||
|
||||
<ul><li><a href="../api/npm.html">npm(3)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">set — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">set — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/start.html
vendored
2
deps/npm/html/api/start.html
vendored
@ -19,7 +19,7 @@
|
||||
<p>npm can run tests on multiple packages. Just specify multiple packages
|
||||
in the <code>packages</code> parameter.</p>
|
||||
</div>
|
||||
<p id="footer">start — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">start — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/stop.html
vendored
2
deps/npm/html/api/stop.html
vendored
@ -19,7 +19,7 @@
|
||||
<p>npm can run stop on multiple packages. Just specify multiple packages
|
||||
in the <code>packages</code> parameter.</p>
|
||||
</div>
|
||||
<p id="footer">stop — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">stop — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/submodule.html
vendored
2
deps/npm/html/api/submodule.html
vendored
@ -33,7 +33,7 @@ dependencies into the submodule folder.</p>
|
||||
|
||||
<ul><li>npm help json</li><li>git help submodule</li></ul>
|
||||
</div>
|
||||
<p id="footer">submodule — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">submodule — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/tag.html
vendored
2
deps/npm/html/api/tag.html
vendored
@ -29,7 +29,7 @@ parameter is missing or falsey (empty), the default froom the config will be
|
||||
used. For more information about how to set this config, check
|
||||
<code>man 3 npm-config</code> for programmatic usage or <code>man npm-config</code> for cli usage.</p>
|
||||
</div>
|
||||
<p id="footer">tag — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">tag — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/test.html
vendored
2
deps/npm/html/api/test.html
vendored
@ -22,7 +22,7 @@ true.</p>
|
||||
<p>npm can run tests on multiple packages. Just specify multiple packages
|
||||
in the <code>packages</code> parameter.</p>
|
||||
</div>
|
||||
<p id="footer">test — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">test — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/uninstall.html
vendored
2
deps/npm/html/api/uninstall.html
vendored
@ -22,7 +22,7 @@ the name of a package to be uninstalled.</p>
|
||||
<p>Finally, 'callback' is a function that will be called when all packages have been
|
||||
uninstalled or when an error has been encountered.</p>
|
||||
</div>
|
||||
<p id="footer">uninstall — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">uninstall — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/unpublish.html
vendored
2
deps/npm/html/api/unpublish.html
vendored
@ -26,7 +26,7 @@ is what is meant.</p>
|
||||
<p>If no version is specified, or if all versions are removed then
|
||||
the root package entry is removed from the registry entirely.</p>
|
||||
</div>
|
||||
<p id="footer">unpublish — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">unpublish — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/update.html
vendored
2
deps/npm/html/api/update.html
vendored
@ -18,7 +18,7 @@
|
||||
|
||||
<p>The 'packages' argument is an array of packages to update. The 'callback' parameter will be called when done or when an error occurs.</p>
|
||||
</div>
|
||||
<p id="footer">update — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">update — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/version.html
vendored
2
deps/npm/html/api/version.html
vendored
@ -24,7 +24,7 @@ fail if the repo is not clean.</p>
|
||||
parameter. The difference, however, is this function will fail if it does
|
||||
not have exactly one element. The only element should be a version number.</p>
|
||||
</div>
|
||||
<p id="footer">version — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">version — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/view.html
vendored
2
deps/npm/html/api/view.html
vendored
@ -99,7 +99,7 @@ the field name.</p>
|
||||
|
||||
<p>corresponding to the list of fields selected.</p>
|
||||
</div>
|
||||
<p id="footer">view — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">view — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/api/whoami.html
vendored
2
deps/npm/html/api/whoami.html
vendored
@ -21,7 +21,7 @@
|
||||
|
||||
<p>This function is not useful programmatically</p>
|
||||
</div>
|
||||
<p id="footer">whoami — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">whoami — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
123
deps/npm/html/doc/README.html
vendored
123
deps/npm/html/doc/README.html
vendored
@ -16,12 +16,31 @@
|
||||
|
||||
<h2 id="IMPORTANT">IMPORTANT</h2>
|
||||
|
||||
<p><strong>You need node v0.4 or higher to run this program.</strong></p>
|
||||
<p><strong>You need node v0.6 or higher to run this program.</strong></p>
|
||||
|
||||
<p>To install an old <strong>and unsupported</strong> version of npm that works on node 0.3
|
||||
and prior, clone the git repo and dig through the old tags and branches.</p>
|
||||
|
||||
<h2 id="Simple-Install-Unix-only-sorry">Simple Install (Unix only, sorry)</h2>
|
||||
<h2 id="Super-Easy-Install">Super Easy Install</h2>
|
||||
|
||||
<p>npm comes with node now.</p>
|
||||
|
||||
<h3 id="Windows-Computers">Windows Computers</h3>
|
||||
|
||||
<p>Get the MSI. npm is in it.</p>
|
||||
|
||||
<h3 id="Apple-Macintosh-Computers">Apple Macintosh Computers</h3>
|
||||
|
||||
<p>Get the pkg. npm is in it.</p>
|
||||
|
||||
<h3 id="Other-Sorts-of-Unices">Other Sorts of Unices</h3>
|
||||
|
||||
<p>Run <code>make install</code>. npm will be installed with node.</p>
|
||||
|
||||
<p>If you want a more fancy pants install (a different version, customized
|
||||
paths, etc.) then read on.</p>
|
||||
|
||||
<h2 id="Fancy-Install-Unix">Fancy Install (Unix)</h2>
|
||||
|
||||
<p>To install npm with one command, do this:</p>
|
||||
|
||||
@ -35,72 +54,37 @@ and prior, clone the git repo and dig through the old tags and branches.</p>
|
||||
|
||||
<pre><code>curl http://npmjs.org/install.sh | clean=yes sh</code></pre>
|
||||
|
||||
<p>If you get permission errors, see the section below, entitled
|
||||
"Permission Errors on Installation".</p>
|
||||
<p>If you get permission errors, you'll need to <strong>run</strong> the script as root.
|
||||
(Note, just putting <code>sudo</code> in front of the <code>curl</code> will <strong>fetch</strong> the script
|
||||
as root.)</p>
|
||||
|
||||
<h2 id="Installing-on-Windows-Experimental">Installing on Windows -- Experimental</h2>
|
||||
<h3 id="Slightly-Fancier">Slightly Fancier</h3>
|
||||
|
||||
<p>Yes, this sucks. A convenient one-liner is coming soon.</p>
|
||||
<p>You can set any npm configuration params with that script:</p>
|
||||
|
||||
<h3 id="Step-1-Drop-the-node-exe-somewhere">Step 1: Drop the node.exe somewhere</h3>
|
||||
<pre><code>curl http://npmjs.org/install.sh | npm_config_prefix=/some/path sh</code></pre>
|
||||
|
||||
<p>You will probably need the latest version of node, <strong>at least</strong> version
|
||||
<code>0.5.8</code> or higher. You can get it from
|
||||
<a href="http://nodejs.org/dist/v0.5.8/node.exe">http://nodejs.org/dist/v0.5.8/node.exe</a>.</p>
|
||||
<p>Or, you can run it in uber-debuggery mode:</p>
|
||||
|
||||
<h3 id="Step-2-optional-Update-the-PATH-environment-variable">Step 2 (optional): Update the %PATH% environment variable</h3>
|
||||
<pre><code>curl http://npmjs.org/install.sh | npm_debug=1 sh</code></pre>
|
||||
|
||||
<p>Update your <code>%PATH%</code> environment variable in System Properties:
|
||||
Advanced: Environment, so that it includes the <code>bin</code> folder you chose.
|
||||
The entries are separated by semicolons.</p>
|
||||
<h3 id="Even-Fancier">Even Fancier</h3>
|
||||
|
||||
<p>You <em>may</em> be able to do this from the command line using <code>set</code> and
|
||||
<code>setx</code>. <code>cd</code> into the <code>bin</code> folder you created in step 1, and do this:</p>
|
||||
<p>Get the code with git. Use <code>make</code> to build the docs and do other stuff.
|
||||
If you plan on hacking on npm, <code>make link</code> is your friend.</p>
|
||||
|
||||
<pre><code>set path=%PATH%;%CD%
|
||||
setx path "%PATH%"</code></pre>
|
||||
<p>If you've got the npm source code, you can also semi-permanently set
|
||||
arbitrary config keys using the <code>./configure --key=val ...</code>, and then
|
||||
run npm commands by doing <code>node cli.js <cmd> <args></code>. (This is helpful
|
||||
for testing, or running stuff without actually installing npm itself.)</p>
|
||||
|
||||
<p>This will have the added advantage that you'll be able to simply type
|
||||
<code>npm</code> or <code>node</code> in any project folder to access those commands.</p>
|
||||
<h2 id="Fancy-Windows-Install">Fancy Windows Install</h2>
|
||||
|
||||
<p>If you decide not to update the PATH, and put the node.exe file in
|
||||
<code>C:\node\node.exe</code>, then the npm executable will end up <code>C:\node\npm.cmd</code>,
|
||||
and you'll have to type <code>C:\node\npm <command></code> to use it.</p>
|
||||
<p>You can download a zip file from <a href="http://npmjs.org/dist/">http://npmjs.org/dist/</a>, and unpack it
|
||||
in the same folder where node.exe lives.</p>
|
||||
|
||||
<h3 id="Step-3-Install-git">Step 3: Install git</h3>
|
||||
|
||||
<p>If you don't already have git,
|
||||
<a href="https://git.wiki.kernel.org/index.php/MSysGit:InstallMSysGit">install it</a>.</p>
|
||||
|
||||
<p>Run <code>git --version</code> to make sure that it's at least version 1.7.6.</p>
|
||||
|
||||
<h3 id="Step-4-install-npm">Step 4: install npm</h3>
|
||||
|
||||
<p>Lastly, <strong>after</strong> node.exe, git, and your %PATH% have <em>all</em> been set up
|
||||
properly, install npm itself:</p>
|
||||
|
||||
<pre><code>git config --system http.sslcainfo /bin/curl-ca-bundle.crt
|
||||
git clone --recursive git://github.com/isaacs/npm.git
|
||||
cd npm
|
||||
node cli.js install npm -gf</code></pre>
|
||||
|
||||
<h2 id="Permission-Errors-EACCES-or-EACCESS-on-Installation">Permission Errors (`EACCES` or `EACCESS`) on Installation</h2>
|
||||
|
||||
<p>On Windows, you may need to run the command prompt in elevated
|
||||
permission mode. (Right-click on cmd.exe, Run as Administrator.)</p>
|
||||
|
||||
<p>On Unix, you may need to run as root, or use <code>sudo</code>.</p>
|
||||
|
||||
<p><strong>Note</strong>: You would need to <code>sudo</code> the <code>sh</code>, <strong>not</strong> the <code>curl</code>. Fetching
|
||||
stuff from the internet typically doesn't require elevated permissions.
|
||||
Running it might.</p>
|
||||
|
||||
<p>I highly recommend that you first download the file, and make sure that
|
||||
it is what you expect, and <em>then</em> run it.</p>
|
||||
|
||||
<pre><code>curl -O http://npmjs.org/install.sh
|
||||
# inspect file..
|
||||
sudo sh install.sh</code></pre>
|
||||
<p>If that's not fancy enough for you, then you can fetch the code with
|
||||
git, and mess with it directly.</p>
|
||||
|
||||
<h2 id="Installing-on-Cygwin">Installing on Cygwin</h2>
|
||||
|
||||
@ -123,12 +107,6 @@ sudo make install</code></pre>
|
||||
|
||||
<p>and npm will install itself.</p>
|
||||
|
||||
<p>If you don't have make, and don't have curl or git, and ALL you have is
|
||||
this code and node, you can probably do this:</p>
|
||||
|
||||
<pre><code>git submodule update --init --recursive
|
||||
sudo node ./cli.js install -g</code></pre>
|
||||
|
||||
<p>Note that github tarballs <strong>do not contain submodules</strong>, so
|
||||
those won't work. You'll have to also fetch the appropriate submodules
|
||||
listed in the .gitmodules file.</p>
|
||||
@ -224,8 +202,7 @@ help config</code> to learn about all the options you can set there.</p>
|
||||
<h2 id="More-Docs">More Docs</h2>
|
||||
|
||||
<p>Check out the <a href="http://npmjs.org/doc/">docs</a>,
|
||||
especially the
|
||||
<a href="http://npmjs.org/doc/faq.html">faq</a>.</p>
|
||||
especially the <a href="http://npmjs.org/doc/faq.html">faq</a>.</p>
|
||||
|
||||
<p>You can use the <code>npm help</code> command to read any of them.</p>
|
||||
|
||||
@ -272,11 +249,25 @@ process for published modules.</p>
|
||||
|
||||
<p>If this concerns you, inspect the source before using packages.</p>
|
||||
|
||||
<h2 id="BUGS">BUGS</h2>
|
||||
|
||||
<p>When you find issues, please report them:</p>
|
||||
|
||||
<ul><li>web:
|
||||
<a href="http://github.com/isaacs/npm/issues">http://github.com/isaacs/npm/issues</a></li><li>email:
|
||||
<a href="mailto:npm-@googlegroups.com">npm-@googlegroups.com</a></li></ul>
|
||||
|
||||
<p>Be sure to include <em>all</em> of the output from the npm command that didn't work
|
||||
as expected. The <code>npm-debug.log</code> file is also helpful to provide.</p>
|
||||
|
||||
<p>You can also look for isaacs in #node.js on irc://irc.freenode.net. He
|
||||
will no doubt tell you to put the output in a gist or email.</p>
|
||||
|
||||
<h2 id="SEE-ALSO">SEE ALSO</h2>
|
||||
|
||||
<ul><li><a href="../doc/npm.html">npm(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/help.html">help(1)</a></li><li><a href="../doc/index.html">index(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer"><a href="../doc/README.html">README</a> — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/adduser.html
vendored
2
deps/npm/html/doc/adduser.html
vendored
@ -39,7 +39,7 @@ authorize on a new machine.</p>
|
||||
|
||||
<ul><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/owner.html">owner(1)</a></li><li><a href="../doc/whoami.html">whoami(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">adduser — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">adduser — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/author.html
vendored
2
deps/npm/html/doc/author.html
vendored
@ -34,7 +34,7 @@ that is not implemented at this time.</p>
|
||||
|
||||
<ul><li><a href="../doc/publish.html">publish(1)</a></li><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/adduser.html">adduser(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">author — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">author — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/bin.html
vendored
2
deps/npm/html/doc/bin.html
vendored
@ -20,7 +20,7 @@
|
||||
|
||||
<ul><li><a href="../doc/prefix.html">prefix(1)</a></li><li><a href="../doc/root.html">root(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/config.html">config(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">bin — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">bin — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/bugs.html
vendored
2
deps/npm/html/doc/bugs.html
vendored
@ -36,7 +36,7 @@ config param.</p>
|
||||
|
||||
<ul><li><a href="../doc/docs.html">docs(1)</a></li><li><a href="../doc/view.html">view(1)</a></li><li><a href="../doc/publish.html">publish(1)</a></li><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/json.html">json(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">bugs — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">bugs — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/build.html
vendored
2
deps/npm/html/doc/build.html
vendored
@ -25,7 +25,7 @@ A folder containing a <code>package.json</code> file in its root.</li></ul>
|
||||
|
||||
<ul><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/link.html">link(1)</a></li><li><a href="../doc/scripts.html">scripts(1)</a></li><li><a href="../doc/json.html">json(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">build — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">build — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/bundle.html
vendored
2
deps/npm/html/doc/bundle.html
vendored
@ -20,7 +20,7 @@ install packages into the local space.</p>
|
||||
|
||||
<ul><li><a href="../doc/install.html">install(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">bundle — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">bundle — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/cache.html
vendored
2
deps/npm/html/doc/cache.html
vendored
@ -66,7 +66,7 @@ they do not make an HTTP request to the registry.</p>
|
||||
|
||||
<ul><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/publish.html">publish(1)</a></li><li><a href="../doc/pack.html">pack(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">cache — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">cache — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/changelog.html
vendored
2
deps/npm/html/doc/changelog.html
vendored
@ -34,7 +34,7 @@
|
||||
|
||||
<ul><li><a href="../doc/npm.html">npm(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">changelog — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">changelog — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/coding-style.html
vendored
2
deps/npm/html/doc/coding-style.html
vendored
@ -191,7 +191,7 @@ set to anything."</p>
|
||||
|
||||
<ul><li><a href="../doc/developers.html">developers(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/npm.html">npm(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">coding-style — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">coding-style — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/completion.html
vendored
2
deps/npm/html/doc/completion.html
vendored
@ -33,7 +33,7 @@ completions based on the arguments.</p>
|
||||
|
||||
<ul><li><a href="../doc/developers.html">developers(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/npm.html">npm(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">completion — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">completion — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
15
deps/npm/html/doc/config.html
vendored
15
deps/npm/html/doc/config.html
vendored
@ -196,7 +196,7 @@ to trust only that specific signing authority.</p>
|
||||
|
||||
<h3 id="cache">cache</h3>
|
||||
|
||||
<ul><li>Default: Windows: <code>~/npm-cache</code>, Posix: <code>~/.npm</code></li><li>Type: path</li></ul>
|
||||
<ul><li>Default: Windows: <code>%APPDATA%\npm-cache</code>, Posix: <code>~/.npm</code></li><li>Type: path</li></ul>
|
||||
|
||||
<p>The location of npm's cache directory. See <code><a href="../doc/cache.html">cache(1)</a></code></p>
|
||||
|
||||
@ -419,6 +419,17 @@ it forces non-global commands to run in the specified folder.</p>
|
||||
<ol><li>devDependencies are not installed at the topmost level when running
|
||||
local <code>npm install</code> without any arguments.</li><li>Set the NODE_ENV="production" for lifecycle scripts.</li></ol>
|
||||
|
||||
<h3 id="proprietary-attribs">proprietary-attribs</h3>
|
||||
|
||||
<ul><li>Default: true</li><li>Type: Boolean</li></ul>
|
||||
|
||||
<p>Whether or not to include proprietary extended attributes in the
|
||||
tarballs created by npm.</p>
|
||||
|
||||
<p>Unless you are expecting to unpack package tarballs with something other
|
||||
than npm -- particularly a very outdated tar implementation -- leave
|
||||
this as true.</p>
|
||||
|
||||
<h3 id="proxy">proxy</h3>
|
||||
|
||||
<ul><li>Default: <code>HTTP_PROXY</code> or <code>http_proxy</code> environment variable, or null</li><li>Type: url</li></ul>
|
||||
@ -586,7 +597,7 @@ then answer "no" to any prompt.</p>
|
||||
|
||||
<ul><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/npm.html">npm(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">config — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">config — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/deprecate.html
vendored
2
deps/npm/html/doc/deprecate.html
vendored
@ -29,7 +29,7 @@ something like this:</p>
|
||||
|
||||
<ul><li><a href="../doc/publish.html">publish(1)</a></li><li><a href="../doc/registry.html">registry(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">deprecate — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">deprecate — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/developers.html
vendored
2
deps/npm/html/doc/developers.html
vendored
@ -150,7 +150,7 @@ from a fresh checkout.</p>
|
||||
|
||||
<ul><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/npm.html">npm(1)</a></li><li><a href="../doc/init.html">init(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/scripts.html">scripts(1)</a></li><li><a href="../doc/publish.html">publish(1)</a></li><li><a href="../doc/adduser.html">adduser(1)</a></li><li><a href="../doc/registry.html">registry(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">developers — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">developers — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/docs.html
vendored
2
deps/npm/html/doc/docs.html
vendored
@ -37,7 +37,7 @@ config param.</p>
|
||||
|
||||
<ul><li><a href="../doc/view.html">view(1)</a></li><li><a href="../doc/publish.html">publish(1)</a></li><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/json.html">json(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">docs — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">docs — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/edit.html
vendored
2
deps/npm/html/doc/edit.html
vendored
@ -37,7 +37,7 @@ or <code>"notepad"</code> on Windows.</li><li>Type: path</li></ul>
|
||||
|
||||
<ul><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/explore.html">explore(1)</a></li><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/config.html">config(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">edit — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">edit — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/explore.html
vendored
2
deps/npm/html/doc/explore.html
vendored
@ -40,7 +40,7 @@ Windows</li><li>Type: path</li></ul>
|
||||
|
||||
<ul><li><a href="../doc/submodule.html">submodule(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/edit.html">edit(1)</a></li><li><a href="../doc/rebuild.html">rebuild(1)</a></li><li><a href="../doc/build.html">build(1)</a></li><li><a href="../doc/install.html">install(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">explore — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">explore — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/faq.html
vendored
2
deps/npm/html/doc/faq.html
vendored
@ -215,7 +215,7 @@ We'll have someone kick it or something.</p>
|
||||
|
||||
<ul><li><a href="../doc/npm.html">npm(1)</a></li><li><a href="../doc/developers.html">developers(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">faq — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">faq — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/find.html
vendored
2
deps/npm/html/doc/find.html
vendored
@ -40,7 +40,7 @@
|
||||
|
||||
<ul><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/view.html">view(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">find — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">find — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/folders.html
vendored
2
deps/npm/html/doc/folders.html
vendored
@ -205,7 +205,7 @@ cannot be found elsewhere. See <code><a href="../doc/json.html">json(1)</a></co
|
||||
|
||||
<ul><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/pack.html">pack(1)</a></li><li><a href="../doc/cache.html">cache(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/publish.html">publish(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">folders — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">folders — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/get.html
vendored
2
deps/npm/html/doc/get.html
vendored
@ -586,7 +586,7 @@ then answer "no" to any prompt.</p>
|
||||
|
||||
<ul><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/npm.html">npm(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">get — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">get — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/global.html
vendored
2
deps/npm/html/doc/global.html
vendored
@ -205,7 +205,7 @@ cannot be found elsewhere. See <code><a href="../doc/json.html">json(1)</a></co
|
||||
|
||||
<ul><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/pack.html">pack(1)</a></li><li><a href="../doc/cache.html">cache(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/publish.html">publish(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">global — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">global — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/help-search.html
vendored
2
deps/npm/html/doc/help-search.html
vendored
@ -38,7 +38,7 @@ where the terms were found in the documentation.</p>
|
||||
|
||||
<ul><li><a href="../doc/npm.html">npm(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/help.html">help(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">help-search — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">help-search — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/help.html
vendored
2
deps/npm/html/doc/help.html
vendored
@ -36,7 +36,7 @@ matches are equivalent to specifying a topic name.</p>
|
||||
|
||||
<ul><li><a href="../doc/npm.html">npm(1)</a></li><li><a href="../doc/README.html">README</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/help-search.html">help-search(1)</a></li><li><a href="../doc/index.html">index(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">help — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">help — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/home.html
vendored
2
deps/npm/html/doc/home.html
vendored
@ -37,7 +37,7 @@ config param.</p>
|
||||
|
||||
<ul><li><a href="../doc/view.html">view(1)</a></li><li><a href="../doc/publish.html">publish(1)</a></li><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/json.html">json(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">home — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">home — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/index.html
vendored
2
deps/npm/html/doc/index.html
vendored
@ -372,7 +372,7 @@
|
||||
|
||||
<p> Display npm username</p>
|
||||
</div>
|
||||
<p id="footer">index — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">index — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/init.html
vendored
2
deps/npm/html/doc/init.html
vendored
@ -29,7 +29,7 @@ without a really good reason to do so.</p>
|
||||
|
||||
<ul><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/version.html">version(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">init — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">init — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/install.html
vendored
2
deps/npm/html/doc/install.html
vendored
@ -134,7 +134,7 @@ affects a real use-case, it will be investigated.</p>
|
||||
|
||||
<ul><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/update.html">update(1)</a></li><li><a href="../doc/link.html">link(1)</a></li><li><a href="../doc/rebuild.html">rebuild(1)</a></li><li><a href="../doc/scripts.html">scripts(1)</a></li><li><a href="../doc/build.html">build(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/tag.html">tag(1)</a></li><li><a href="../doc/rm.html">rm(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">install — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">install — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/json.html
vendored
2
deps/npm/html/doc/json.html
vendored
@ -436,7 +436,7 @@ overridden.</p>
|
||||
|
||||
<ul><li><a href="../doc/semver.html">semver(1)</a></li><li><a href="../doc/init.html">init(1)</a></li><li><a href="../doc/version.html">version(1)</a></li><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/help.html">help(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/publish.html">publish(1)</a></li><li><a href="../doc/rm.html">rm(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">json — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">json — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/link.html
vendored
2
deps/npm/html/doc/link.html
vendored
@ -58,7 +58,7 @@ installation target into your project's <code>node_modules</code> folder.</p>
|
||||
|
||||
<ul><li><a href="../doc/developers.html">developers(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/config.html">config(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">link — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">link — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/list.html
vendored
2
deps/npm/html/doc/list.html
vendored
@ -52,7 +52,7 @@ project.</p>
|
||||
|
||||
<ul><li><a href="../doc/config.html">config(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/link.html">link(1)</a></li><li><a href="../doc/prune.html">prune(1)</a></li><li><a href="../doc/outdated.html">outdated(1)</a></li><li><a href="../doc/update.html">update(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">list — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">list — npm@1.1.0-alpha-5</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
2
deps/npm/html/doc/ln.html
vendored
2
deps/npm/html/doc/ln.html
vendored
@ -58,7 +58,7 @@ installation target into your project's <code>node_modules</code> folder.</p>
|
||||
|
||||
<ul><li><a href="../doc/developers.html">developers(1)</a></li><li><a href="../doc/faq.html">faq(1)</a></li><li><a href="../doc/json.html">json(1)</a></li><li><a href="../doc/install.html">install(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/config.html">config(1)</a></li></ul>
|
||||
</div>
|
||||
<p id="footer">ln — npm@1.1.0-alpha-2</p>
|
||||
<p id="footer">ln — npm@1.1.0-alpha-3</p>
|
||||
<script>
|
||||
;(function () {
|
||||
var wrapper = document.getElementById("wrapper")
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user