Fast handcraft svg badge generator library . Used on badgen.net.
 
 
Go to file
Amio 3a7a69e622 feat: add icon support 2018-07-20 11:02:00 +08:00
bench Fix emoji params in benchmark 2018-07-19 14:25:42 +08:00
lib feat: add icon support 2018-07-20 11:02:00 +08:00
preview feat: add icon support 2018-07-20 11:02:00 +08:00
tap-snapshots More tests against snapshots #4 2018-07-19 14:39:31 +08:00
test More tests against snapshots #4 2018-07-19 14:39:31 +08:00
.gitignore
.npmignore Update .npmignore 2018-07-19 14:21:31 +08:00
.travis.yml Revert "Add codecov report to travis.yml" 2018-07-18 15:18:35 +08:00
README.md Cleanup README.md 2018-07-19 15:23:26 +08:00
package-lock.json Dependencies are good, eat it 2018-07-19 14:55:10 +08:00
package.json Dependencies are good, eat it 2018-07-19 14:55:10 +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
})

Available color names:

Badge Service

https://badgen.now.sh/

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