A crude script for generating libp2p repo badges.
./badges.js <project> # where project is the name of the repo in the libp2p org
badges.js
#!/usr/bin/env node
'use strict'
const repo = process.argv[2]
const badges = `[](http://protocol.ai)
[](http://libp2p.io/)
[](http://webchat.freenode.net/?channels=%23libp2p)
[](https://discuss.libp2p.io)
[](https://codecov.io/gh/libp2p/${repo})
[](https://travis-ci.com/libp2p/${repo})
[](https://david-dm.org/libp2p/${repo})
[](https://github.com/feross/standard)`
console.log(badges)