Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-05-09 23:49:47 +0400
committerisaacs <i@izs.me>2010-05-09 23:49:47 +0400
commit24de6ca5396edbca75971ad03be023b8e6659bfd (patch)
treecad85efef44eeeac8716e80cb3ea2a5463d39ade /lib
parent0019443e4b4e19b3213ac1edf14b8f483e86583d (diff)
Change the docs to match how install will work.
Diffstat (limited to 'lib')
-rw-r--r--lib/install.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/install.js b/lib/install.js
index b6835e2ee..728d113c9 100644
--- a/lib/install.js
+++ b/lib/install.js
@@ -2,14 +2,14 @@
// npm install <pkg> <pkg> <pkg>
// npm install <pkg@version> <pkg@"1.0.0 - 1.99.99"> <pkg[@stable]> <pkg@tagname>
-// 1. fetch the data for that package/tag
+// 1. fetch the data for that package/tag into the cache
// 2. if it has any dependents, which are not yet installed,
// then add those to the list, and fetch their data.
-// 3. when all the datas have been fetched, and we have a set
-// of packages that are either installed or fetchable which
-// will satisfy everyone's dependencies, then create the
-// target root directories for each (so they're link-able)
-// 4. download all the tarballs, and do npm install on each.
+// 3. when all the pkgs are fetched to the cache, and we have a set
+// of packages that are either installed or fetched which
+// will satisfy everyone's dependencies, then untar into the
+// target directories for each of them.
+// 4. build each of the packages that aren't already installed
module.exports = registryInstall