New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

github-user-language-stats

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github-user-language-stats - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

6

bin/gh-lang-stat.js

@@ -11,3 +11,3 @@ #!/usr/bin/env node

console.log('usage: GITHUB_API_ACCESS_TOKEN=<your token> ' + commandName + ' <github username>');
process.exit(1);
process.exit(process.argv.length < 3 ? 1 : 0);
}

@@ -28,3 +28,5 @@

axios.get('https://api.github.com/users/' + username + '/repos', config).then(function (repos) {
return axios.all(repos.data.map(function (repo) {
return axios.all(repos.data.filter(function (repo) {
return !repo.fork;
}).map(function (repo) {
return axios.get(repo.languages_url, config);

@@ -31,0 +33,0 @@ }));

{
"name": "github-user-language-stats",
"version": "1.2.1",
"version": "1.2.2",
"description": "Show GitHub user's programming language stats",

@@ -5,0 +5,0 @@ "repository": {

@@ -9,2 +9,2 @@ # github-user-language-stats

![](https://cloud.githubusercontent.com/assets/1413408/16565862/306fa658-424b-11e6-90b1-238f700b9366.png)
![](https://cloud.githubusercontent.com/assets/1413408/16590171/670d0cfc-4311-11e6-9d47-aaf9e6366435.png)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc