Badgen Service

Home of badgen.net, fast badge generating service.

## The Badgen Story > That's a service, that's a library, hooorey! - [@tunnckoCore](https://github.com/amio/badgen-service/pull/17) > Finally something to replace http://shields.io - [@EGOIST](https://twitter.com/_egoistlily/status/1024202206185119744) > Epic work on Badgen! Porting the @dependabot badges over to it now. ⚡️ - [@greybaker](https://twitter.com/greybaker/status/1023253585021333504) The [badgen](https://github.com/amio/badgen) library was born as an exploration of "is it possible to generate badge SVG markup directly with JavaScript (without using pdfkit/canvas/puppeteer to measure text length)?". The result is better than I expected, Verdana (the de-facto font for badges) text width can be calculated precisely with a prebuilt [char-width-table](https://github.com/amio/badgen/blob/master/lib/widths-verdana-110.json), even no need to worry about kerning 🤯 Then, logically, [Badgen Service](https://badgen.net) was born. I had a good time with [shields.io](https://shields.io), but as time goes by Shields gets slower, leaves more and more broken badges in READMEs. Badgen is trying to be a fast alternative with simplicity and flexibility. Its codebase is simple (2K LoCs vs Shields' 22K LoCs), well structured and fun to develop - it is pretty easy to add badge(s) for new service(s). In the beginning, I was considering both [Now](https://zeit.co/now) and [Google Cloud Functions](https://cloud.google.com/functions/). Then Zeit announced [Now CDN](https://zeit.co/blog/now-cdn) on the same day as badgen.now.sh (the PoC of Badgen Service)'s reveal, what a fate! Cloudflare powered Now CDN is a perfect choice for such service, caching and scalability in simplicity. Badgen is the fastest possible badge generating service out there. It's fast, it's reliable, it's globally distributed and cached, thanks to Now. At the time of badgen.now.sh's reveal, it had only four live badges as demonstrations. Since then, thanks to [awesome people](https://github.com/amio/badgen-service/graphs/contributors)'s help, Badgen keeps getting better at a fast pace. Welcome to join us, let's build the best badge service in the universe 🔥 ## Anatomy - Written in TypeScript - Using [badgen](https://github.com/amio/badgen) library to generate svg on the fly - Two styles - https://badgen.net - classic style badges - https://flat.badgen.net - flat & square style badges - Two badge types - static badge - URL defined badge (label, status, color) - live badge - Show live status from 3rd party services - Builtin Icons & External Icon Support - see [badgen-icons](https://github.com/badgen/badgen-icons) - Docker image [amio/badgen](https://hub.docker.com/r/amio/badgen) ## Developing [![Contributors][contributors-src]][contributors-href] [![Dependencies][dependencies-src]][dependencies-href] [![Maintainability][maintainability-src]][maintainability-href] [![Code Quality][codequality-src]][codequality-href] [![Docker image][docker-src]][docker-href] **start dev server** npm run dev **run with docker** docker run -p 3000:3000 amio/badgen ### Add Live Badge If a service you wish to have is still missing here, we welcome new contributions. Basically, you need to add a file in `endpoints/[name-of-service].ts` and that's it. Take [/crates](https://badgen.net/crates) as an example: - [endpoints/crates.ts](endpoints/crates.ts) - main function for [crates](https://badgen.net/docs/crates) badges - [libs/badge-list.ts](libs/badge-list.ts) - contains index of all live badges To ensure that your addition is working correctly, start the development server with `npm run dev`. __NOTES__ - You can create live badge without touching badgen.net's code. Checkout docs for [/runkit](https://badgen.net/docs/runkit) or [/https](https://badgen.net/docs/https). - The [/runkit](https://badgen.net/docs/runkit) support would be super handy for prototyping a new live badge. ### Add Icon You can contribute icons to [badgen-icons](https://github.com/badgen/badgen-icons). Please make sure new icon is optimized using [svgomg](https://jakearchibald.github.io/svgomg/). ## Tracking Policy Badgen use [Sentry](https://sentry.io) to collect errors for improving service, use Google Analytics on doc pages ([home](https://badgen.net), [/github](https://badgen.net/github), [/packagephobia](https://badgen.net/packagephobia), etc.) to understand overall usage. Badgen do not collect any identifying information. ## Contributors Thanks to our [contributors][contributors-href] 🎉👏 [![](https://opencollective.com/badgen/contributors.svg?width=980&button=false)][contributors-href] ## Support Badgen We are on OpenCollective https://opencollective.com/badgen Support this project by donation, help Badgen continue and evolving! [[Become a backer](https://opencollective.com/badgen#backer)] ## Sponsors [dependencies-src]: https://badgen.net/david/dep/badgen/badgen.net?label=deps [dependencies-href]: https://david-dm.org/badgen/badgen.net [maintainability-src]: https://badgen.net/codeclimate/maintainability/badgen/badgen.net [maintainability-href]: https://codeclimate.com/github/badgen/badgen.net [codequality-src]: https://badgen.net/lgtm/grade/javascript/g/badgen/badgen.net [codequality-href]: https://lgtm.com/projects/g/badgen/badgen.net/context:javascript [contributors-src]: https://badgen.net/github/contributors/badgen/badgen.net [contributors-href]: https://github.com/badgen/badgen.net/graphs/contributors [docker-src]: https://badgen.net/badge/docker/amio%2Fbadgen?label&icon=docker [docker-href]: https://hub.docker.com/r/amio/badgen