blob: f0d2ef73aebab5150fd0d36fc6f6e8231bac7382 (
plain)
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
|
module.exports = stars
stars.usage = "npm stars [username]"
var url = require("url")
, npm = require("./npm.js")
, registry = npm.registry
, log = require("npmlog")
function stars (args, cb) {
var name = args.length === 1 ? args[0] : npm.config.get("username")
, uri = url.resolve(npm.config.get("registry"), name)
registry.stars(uri, showstars)
function showstars (er, data) {
if (er) {
return cb(er)
}
if (data.rows.length === 0) {
log.warn('stars', 'user has not starred any packages.')
} else {
data.rows.forEach(function(a) {
console.log(a.value)
})
}
cb()
}
}
|