Make your own badges here!
npm install gh-badges
var badge = require('gh-badges');
badge({ text: [ "build", "passed" ], colorscheme: "green" },
function(svg) {
// svg is a String… of your badge.
});
npm install -g gh-badges
badge build passed :green .png > mybadge.png
# Stored a PNG version of your badge on disk.
git clone [email protected]:badges/gh-badges
cd gh-badges
npm install
sudo npm start
The root gets redirected to http://shields.io.
For testing purposes, you can go to http://localhost/try.html
.
You should modify that file. The "real" root, http://localhost/index.html
,
gets generated from the try.html
file.
The format is the following:
{
/* Textual information shown, in order. */
"text": [ "build", "passed" ],
"colorscheme": "green"
/* … Or… */
"colorA": "#555",
"colorB": "#4c1"
}
If you want to add a default badge, you only need to modify
default-badges.json
. The format is the same as that given to the API.
If you want to add a colorscheme, head to colorscheme.json
. Each scheme has a
name and a CSS/SVG color for the color used in the first box (for the first
piece of text, field colorA
) and for the one used in the second box (field
colorB
).
"green": {
"colorB": "#4c1"
}
Both colorA
and colorB
have default values. Usually, the first box uses the
same dark grey, so you can rely on that default value by not providing a
"colorA"
field (such as above).
You can also use the "colorA"
and "colorB"
fields directly in the badges if
you don't want to make a color scheme for it. In that case, remove the
"colorscheme"
field altogether.
Because of the usage of the npm module canvas you need to have cairo installed.
For more information check the wiki of the canvas project with system-specific installation details.
Once you have installed the Heroku Toolbelt:
heroku login
heroku create your-app-name
heroku config:set BUILDPACK_URL=https://github.com/mojodna/heroku-buildpack-multi.git#build-env
cp /path/to/Verdana.ttf .
make deploy
heroku open
See h5bp/lazyweb-requests#150 for a story of the project's inception.
This is also available as a gem badgerbadgerbadger
, code here.
All work here is licensed CC0.