109 lines
3.2 KiB
HTML
109 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="tacit-css.min.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Hits-of-Code Badges</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Hits-of-Code Badges</h1>
|
|
|
|
<div>
|
|
<p>
|
|
This API offers badges for the Hits-of-Code metric for your repositories. This metric was proposed by
|
|
<a href="https://www.yegor256.com/">Yegor Bugayenko</a> as an
|
|
<a href="https://www.yegor256.com/2014/11/14/hits-of-code.html">alternative to Lines-of-Code</a>.
|
|
</p>
|
|
|
|
<p>
|
|
Instead of counting the number of existing lines in a codebase, the number of modified lines is counted. That way, the
|
|
metric can only grow and never shrink. While this metric still cannot give any information about the code quality, it
|
|
gives an overview about the amount of work put into a codebase.
|
|
</p>
|
|
|
|
<p>
|
|
There is a <a href="https://github.com/yegor256/hoc/">command-line tool</a> to calculate the HoC of a repository, but
|
|
some people might want a nice badge to put in their README, that's why I implemented this API. Currently the API can be
|
|
used for GitHub, GitLab and Bitbucket repositories. Just put the following code in your README:
|
|
</p>
|
|
|
|
<pre>
|
|
[![Hits-of-Code](https://hitsofcode.com/<service>/<user>/<repo>)](https://hitsofcode.com/<service>/<user>/<repo>)
|
|
</pre>
|
|
|
|
<p>
|
|
where <code><service></code> is one of <code>github</code>, <code>gitlab</code> or <code>bitbucket</code>. So the
|
|
following Markdown
|
|
</p>
|
|
|
|
<pre>
|
|
[![Hits-of-Code](https://hitsofcode.com/github/vbrandl/elm-chess)](https://hitsofcode.com/view/github/vbrandl/elm-chess)
|
|
</pre>
|
|
|
|
<p>
|
|
would render this badge:
|
|
</p>
|
|
|
|
<pre>
|
|
<a href="https://hitsofcode.com/view/github/vbrandl/elm-chess"><img src="https://hitsofcode.com/github/vbrandl/elm-chess" /></a>
|
|
</pre>
|
|
</div>
|
|
|
|
<h2>Colors</h2>
|
|
|
|
<div>
|
|
<p>
|
|
You can generate badges with custom colors via the <code>color</code> query parameter. The following predefined colors
|
|
are supported:
|
|
</p>
|
|
|
|
<pre>
|
|
|
|
<img src="/badge?color=brightgreen" />
|
|
<img src="/badge?color=green" />
|
|
<img src="/badge?color=yellowgreen" />
|
|
<img src="/badge?color=yellow" />
|
|
<img src="/badge?color=orange" />
|
|
<img src="/badge?color=red" />
|
|
<img src="/badge?color=blue" />
|
|
<img src="/badge?color=lightgrey" />
|
|
|
|
<img src="/badge?color=success" />
|
|
<img src="/badge?color=important" />
|
|
<img src="/badge?color=critical" />
|
|
<img src="/badge?color=informational" />
|
|
<img src="/badge?color=inactive" />
|
|
|
|
</pre>
|
|
|
|
<p>
|
|
You can also pass HTML color codes:
|
|
</p>
|
|
|
|
<pre>
|
|
<img src="/badge?color=ff69b4" /> <img src="/badge?color=9cf" />
|
|
</pre>
|
|
</div>
|
|
|
|
<h2>Source Code</h2>
|
|
|
|
<div>
|
|
The whole service is licensed under the <a href="https://opensource.org/licenses/MIT">MIT license</a> and the source
|
|
code <a href="https://github.com/vbrandl/hoc">can be found on GitHub</a>. Feature proposals or pull requests are
|
|
welcome.
|
|
</div>
|
|
|
|
<h2>Contact</h2>
|
|
|
|
<div>
|
|
You can reach me via mail: <a href="mailto:mail+hoc@vbrandl.net">mail+hoc@vbrandl.net</a> preferably using
|
|
my <a href="https://mirror.oldsql.cc/key.asc">GPG key</a>
|
|
(<a href="http://pool.sks-keyservers.net/pks/lookup?op=get&search=0x1FFE431282F4B8CC0A7579167FB009175885FC76">from a
|
|
keyserver</a>), or by using any other UID from my key.
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|