forked from npm/npm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnpm.js
executable file
·81 lines (73 loc) · 1.99 KB
/
npm.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
var npm = exports
, set = require("./lib/utils/set")
, get = require("./lib/utils/get")
, ini = require("./lib/utils/ini")
, log = require("./lib/utils/log")
npm.commands = {}
; [ "install"
, "activate"
, "deactivate"
, "uninstall"
, "ls"
, "build"
, "link"
, "publish"
, "tag"
, "adduser"
, "config"
, "help"
, "cache"
, "test"
, "stop"
, "start"
, "restart"
].forEach(function (c) { npm.commands[c] = require("./lib/"+c) })
npm.commands.list = npm.commands.ls
npm.commands.rm = npm.commands.uninstall
// Local store for package data, so it won't have to be fetched/read more than
// once in a single pass. TODO: cache this to disk somewhere when we're using
// the registry, to cut down on HTTP calls.
var registry = {}
npm.set = function (key, val) {
if (typeof key === "object" && !val && key._id) {
val = key
key = key._id
}
return set(registry, key, val)
}
npm.get = function (key) { return get(registry, key) }
var path = require("path")
, config = Object.create(ini.config)
npm.config =
{ get : function (key) {
return ini.get(key, config)
}
, set : function (key, val) {
if (typeof key === "object" && !val && key._id) {
val = key
key = key._id
}
return ini.set(key, val, config)
}
, del : function (key, val) {
return ini.del(key, val, config)
}
}
// shorthand a few of these, because they're common
Object.defineProperty(npm, "root",
{ get: function () { return npm.config.get("root") }
, set: function (newRoot) { npm.config.set("root", newRoot) }
})
Object.defineProperty(npm, "dir",
{ get: function () { return path.join(npm.root, ".npm") }
, enumerable:true
})
Object.defineProperty(npm, "cache",
{ get: function () { return path.join(npm.root, ".npm", ".cache") }
, enumerable:true
})
Object.defineProperty(npm, "tmp",
{ get: function () { return path.join(npm.root, ".npm", ".tmp") }
, enumerable:true
})
process.addListener("exit", function () { ini.save() })