Fast handcraft svg badge generator library . Used on badgen.net.
 
 
Go to file
Amio ec91efae27 feat: tweak icon position & size (14 => 13.2) 2018-07-28 10:40:44 +08:00
bench chore: add bench for icon support 2018-07-20 15:51:12 +08:00
lib feat: tweak icon position & size (14 => 13.2) 2018-07-28 10:40:44 +08:00
preview
tap-snapshots chore: update test snpashots 2018-07-27 00:24:05 +08:00
test chore: update tests for type checking 2018-07-25 11:30:09 +08:00
.gitignore
.npmignore
.travis.yml
README.md docs: badgen.now.sh => badgen.net 2018-07-27 14:46:20 +08:00
package-lock.json 2.1.3 2018-07-27 00:24:44 +08:00
package.json 2.1.3 2018-07-27 00:24:44 +08:00

README.md

badgen

npm version install size Coverage Status

Fast handcraft svg badge generator.

Usage

npm package

npm install badgen

const badgen = require('badgen')

const svgString = badgen({
  subject: 'npm',   // <Text>
  status: 'v1.2.3', // <Text>
  color: 'blue',    // <Color RGB> or <Color Name>, optional
  style: 'flat',    // 'flat' or undefined, optional
  emoji: true,      // Support emoji in text, optional
  icon: 'data:image/svg+xml;base64,PHN2Zy...' // Use icon, optional
})

Available color names:

Badge As A Service

https://badgen.net

Benchmarks

npm run bench on my iMac5K(Late 2014), 3.5G i5, with Node.js 10.5.0:

[classic] style, long params  x 1,071,083 ops/sec ±0.82% (89 runs sampled)
[classic] style, full params  x 1,332,181 ops/sec ±0.80% (92 runs sampled)
   [flat] style, long params  x 1,145,825 ops/sec ±0.73% (94 runs sampled)
   [flat] style, full params  x 1,416,453 ops/sec ±0.69% (91 runs sampled)

License

ISC