Give your repos some freshness with a Repo Card.
I often get lazy adding a profile to my repositories, especially when I'd like for them to get forked, starred, etc. If you've been there, then Repo Cards are for you.
Here's one of my own repos with one: 2048 Cube
You can add a repo card in many different ways. Choose one that's easiest for you:
Reference the script file via the CDN (not fast, yet)
<script src="https://rawgit.com/FarhadG/repo-card/master/repo-card.min.js"></script>
Install via Bower
$ bower install repo-card --save
Install via NPM
$ npm install repo-card --save
Then, you simply configure the Repo card with your info
// Once sourced from either a CDN or locally, you use the data-attributes to configure the repo card
<script src="./repo-card.min.js" id="repo-card-lib"
data-repo="init"
data-username="farhadg"
data-title="Init">
</script>
Or, you configure it within your app as seen in the script
tag below
<script src="../lib/repo-card/repo-card.js"></script>
<script>
RepoCard
.configure({
repo: 'init',
username: 'farhadg',
title: 'Init',
subtitle: '@farhadg',
info: 'A quick way to get you to the first commit of any GitHub repo (tracks branches too)',
position: {
top: 25
right: 25
}
});
</script>
Here are some options that you can set within the data-attrbutes
(e.g. data-info="some information
) or in your app.
repo
: The name of the repotheme
: There's only one theme right now (doodle
), however, I'd love more themes. Check out thethemes
folder or reach out if you'd like assistance in contributingusername
: Your Github usernametitle
: A title for the repo cardsubtitle
: A subtitle for the repo cardinfo
: Some information you'd like to include about your projectbackground
: Set the background (it accepts CSS, so HEX, RGB or even an image,url(...)
, worksthumb
: Set the thumbnail (it accepts CSS, so HEX, RGB or even an image,url(...)
, worksposition
: The card is currently set tofixed
position, so you can change its position (e.g.position: { bottom: 15, left: 15 }
- More themes (would love your help on this)
- GUI dashboard for configuring the Repo Card
- Animations to have the repo card hide away with interactions (e.g.
scroll
) - NPM, Browserify, Webpack, etc. builds?
Please use the issues page with any questions/concerns. If you like this idea and find it useful, please share the project as I'd love the help :)