Automatically add badges to your README.md

productivity

I end up having a lot of README.md files in which I want to visually show what tools I have used. There is this amazing free tool that gives you a highly customized badge for your needs.

This is what you add in the markdown file to show the badge for something.

<a><img alt="Vite" src="https://img.shields.io/static/v1?label=build_tool&message=Vite&color=#24ea1b"/></a>

But this was still manual and I have to keep track of what more tools I added and what tools I removed.

So, I created a simple npm package that allows you to update your README.md file automatically with the badges. The real work is done by https://github.com/netlify/framework-info into scanning the packages and categorizing them.

Checkout the npm package

... Loading comments