An open API service indexing awesome lists of open source software.

https://github.com/barelyhuman/nimclog

a smaller and tightly scoped version of commitlog
https://github.com/barelyhuman/nimclog

Last synced: 5 months ago
JSON representation

a smaller and tightly scoped version of commitlog

Awesome Lists containing this project

README

          

# nimclog

This is nim port of commitlog with a tighter scope

## Why ?

size, binary size.

also, to get better at nimlang

## Features

- Categorize git's logs into `["build","chore","ci","docs","feat","fix","perf","refactor","revert","style","test"]`
- Doesn't support scoped commits right now
- That's about it.

## Usage

```sh
# for everything
nimclog

# for a specific range
nimclog --start= --end=

# shorthand props for the same
nimclog -s=
nimclog -e=

```

## Installation

Cross compiled binaries can be found on the releases pages.
Windows builds have not been tested, please report if you find any issues running them.

You can also compile it on your own system using `nim` or `nimble`

```sh
nimble build
# or
nim c src/nimclog.nim
```

## License

[MIT](/LICENSE)