node/deps/npm/lib/stars.js

30 lines
645 B
JavaScript
Raw Normal View History

2013-02-16 02:49:16 +08:00
module.exports = stars
stars.usage = "npm stars [username]"
2014-08-01 00:05:30 +08:00
var url = require("url")
, npm = require("./npm.js")
2013-02-16 02:49:16 +08:00
, registry = npm.registry
, log = require("npmlog")
function stars (args, cb) {
var name = args.length === 1 ? args[0] : npm.config.get("username")
2014-08-01 00:05:30 +08:00
, uri = url.resolve(npm.config.get("registry"), name)
registry.stars(uri, showstars)
2013-02-16 02:49:16 +08:00
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()
}
}