git-auto-badger
v1.0.22
Published
Add badges to your project markdown in 2 seconds
Downloads
113
Maintainers
Readme
Git Auto badger
Add badges to your project in 2 seconds
A npm cli tool that reads your packagejson/project metadata and git config and connects your readme with multiple badge providers (shields.io, badgen.net etc)
:clap: & :heart: to auto badger for making badging simple
Table of contents
- Git Auto badger
- Facing Problems
- Contributions
Announcements
- 06 Mar 2021
- Added -e/--exclude option to opt out of some badges
- 08 Nov 2020
- Added -p option for passing custom path to your markdown
- 01 Nov 2020
- Using meow and update notifier
- Removing accidentally added npm package. A total blunder :(
- 18 Oct 2020
- Using find-up to search files. Now you can use this with monorepos too.
Prerequisites
Node >= 10.x.x
See the demo running here
Why
- Copy pasting / creating badges on shields.io such a robotic job.
- Some of the default provided badges lacks of some of the accessibility constraint. White on green does not meet the required contrast ratio. See the badge below for example it will be difficult for low vision people to read it
How to use
Install the cli
npm i -g git-auto-badger
or
yarn add -g git-auto-badger
Add placeholder to your markdown
Add following markdown comment where you want the badges to appear
[//]: <> (start placeholder for auto-badger)
Run the cli
then run following in your project root directory
npx auto-badger
And whoo hoo you are done. All the necessary badges are added to your markdown.
What all things are supported
This cli currently supports following providers from each category
- VCS
- CI/CD
- Travis CI [:heavy_check_mark:]
- Github Actions (first Job) [:heavy_check_mark:]
- Appveyor [:heavy_check_mark:]
- Circle CI [:heavy_check_mark:]
- Coverage
- Package Managers
- License
- Github License File [:heavy_check_mark:]
- Code of Conduct
- Github CoC File [:heavy_check_mark:]
- Dependancies
- Libraries.io for NPM [:heavy_check_mark:]
- Package size
- Bundelphobia [:heavy_check_mark:]
- Download Count
- NPM Per month [:heavy_check_mark:]
- Social
- Github (Repo Stars, Fork) [:heavy_check_mark:]
- twitter (Follow user/org) [:heavy_check_mark:]
- Chat
How it works?
It looks for different file in your project root directory. To decide what tools are you using. And generates badges based on it.
e.g. If you have .travis.yml then it assumes you are using travis for CI/CD and it creates a dynamic badge for travis latest build status or if you have appveyor.yml then it assumes you are using appveyor for CI/CD and it creates a dynamic badge for appveyor latest build status
Defaults
| Badge Type | Default | | ---------- | --------------------------------------------- | | Size | Bundle phobia (if browser only package) | | Size | package phobia (if node only package e.g cli) |
If you liked my work, show some :heart: :star: the repo.
Also you can appreciate by
Facing Problems
Please let me know if you are facing any issues here
Contributions
Would :heart: to see any contributions.
How to contribute
- Fork this repo
cd auto-badger
npm link
- Make changes
auto-badger
- Check and make sure all badges are generated properly