Skip to content

Instantly share code, notes, and snippets.

@jongalloway
Forked from yyx990803/starcounter.js
Last active January 11, 2023 20:15
Show Gist options
  • Save jongalloway/413aabc68a510dd9e3f46a926184f7cf to your computer and use it in GitHub Desktop.
Save jongalloway/413aabc68a510dd9e3f46a926184f7cf to your computer and use it in GitHub Desktop.
Count your total stars!
var https = require('https'),
user = process.argv[2],
opts = parseOpts(process.argv.slice(3))
request('/users/' + user, function (res) {
if (!res.public_repos) {
console.log(res.message)
return
}
var pages = Math.ceil(res.public_repos / 100),
i = pages,
repos = []
while (i--) {
request('/users/' + user + '/repos?per_page=100&page=' + (i + 1), check)
}
function check (res) {
repos = repos.concat(res)
pages--
if (!pages) output(repos)
}
})
function request (url, cb) {
https.request({
hostname: 'api.github.com',
path: url,
headers: {'User-Agent': 'GitHub StarCounter'}
}, function (res) {
var body = ''
res
.on('data', function (buf) {
body += buf.toString()
})
.on('end', function () {
cb(JSON.parse(body))
})
}).end()
}
function output (repos) {
var total = 0,
longest = 0,
list = repos
.filter(function (r) {
total += r.stargazers_count
if (r.stargazers_count >= opts.thresh) {
if (r.name.length > longest) {
longest = r.name.length
}
return true
}
})
.sort(function (a, b) {
return b.stargazers_count - a.stargazers_count
})
if (list.length > opts.limit) {
list = list.slice(0, opts.limit)
}
console.log('\nTotal: ' + total + '\n')
console.table(list, ['name', 'stargazers_count']);
}
function parseOpts (args) {
var opts = {
thresh: 1,
limit: Infinity
}
args.forEach(function (a, i) {
var next = args[i + 1]
if (a === '-t') {
opts.thresh = parseInt(next, 10) || 1
} else if (a === '-l') {
opts.limit = parseInt(next, 10) || Infinity
}
})
return opts
}
@jongalloway
Copy link
Author

jongalloway commented Apr 19, 2022

Bash

curl https://gist.githubusercontent.com/jongalloway/413aabc68a510dd9e3f46a926184f7cf/raw/620f4199156bf3fca0494cb6a1d37010c782ca71/starcounter.js -sSL | node - dotnet -t 50

Powershell

irm gist.githubusercontent.com/jongalloway/413aabc68a510dd9e3f46a926184f7cf/raw/620f4199156bf3fca0494cb6a1d37010c782ca71/starcounter.js | node - dotnet -t 50

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment