Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.03 KB

README.md

File metadata and controls

33 lines (22 loc) · 1.03 KB

GitHub Stats Card for React

Pass a GitHub username and a boolean for whether or not you want the theme to be used, and get this:

Widget Screenshot

Installation

npm install react-github-stats-card

Example:

The Card function returns a functional React Component. Imports will be updated in the future to get rid of using dist.

import Card from 'react-github-stats-card/dist/Card';

function myComponent() {
  return <Card username='cnocon' theme={true} />
}

Note: If you run into rate limiting errors from GitHub, you can pass your personal access token, demonstrated below, to increase that limit. Be sure to keep any hardcoded access token values out of your code!

import Card from 'react-github-stats-card/dist/Card';

function myComponent() {
  return <Card username='cnocon' theme={true} accessToken=MY_ACCESS_TOKEN/>
}