项目作者: andrewsosa

项目描述 :
Retrieve your (or someone else's) pinned Github repos!
高级语言: JavaScript
项目地址: git://github.com/andrewsosa/eeyore.git
创建时间: 2017-02-28T22:18:43Z
项目社区:https://github.com/andrewsosa/eeyore

开源协议:MIT License

下载


This package no longer works.

Github changed the markup for the profile’s pinned repos. This package no longer works. No Version Works. Do Not Use This.

I’ve removed all package dependencies for extra security in case anyone installs this for any reason.

Eeyore.js RIP :skull:

Retrieve your (or someone else’s) pinned Github repos!

Build Status
js-standard-style

Installation :skull:

  1. # npm
  2. npm i eeyore
  3. # yarn
  4. yarn add eeyore

Usage :skull:

  1. var eeyore = require('eeyore');
  2. eeyore('<github_username>').then(repos => {
  3. // repos = [ ... ]
  4. });
Example
  1. eeyore('andrewsosa').then(console.log)
  2. /*
  3. [ { repo: 'Contest-Server',
  4. owner: 'FSU-ACM',
  5. description: 'Flask suite for running Fall/Spring Programming Contests',
  6. language: 'Python',
  7. color: '#3572A5',
  8. stars: '1',
  9. forks: '1',
  10. origin: undefined },
  11. { repo: 'hackfsu_com',
  12. ...
  13. origin: undefined } ]
  14. */

License

MIT © Andrew Sosa

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-change)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-change)
  5. Create new Pull Request