1.0.6 • Published 10 years ago

github-vcard v1.0.6

Weekly downloads
13
License
-
Repository
github
Last release
10 years ago

github-vcard by @michalbe

Simple scraper for Github User data

How to use:

npm install github-vcard

then:

var gv = require('github-vcard');

// First argument of the function is a username
gv('michalbe', function(err, result) {
  console.log(result);
  // result:
  // {
  //   followers: '379',
  //   starred: '25',
  //   following: '30',
  //   email: '',
  //   fullName: 'Michał Budzyński',
  //   homeLocation: 'Warsaw, Poland',
  //   worksFor: 'Mozilla',
  //   url: 'http://michalbe.blogspot.com',
  //   joinDate: 'Jul 28, 2010' }'Warsaw, Poland'
  // }
});

It was created to get github user's data without authentication. The official gh API allows you to make only 60 requests an hour.

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.0

10 years ago