https://github.com/release-lab/conventional-commit-parser
Conventional Commits parser written in Go
https://github.com/release-lab/conventional-commit-parser
commit conventional-commit conventional-commits
Last synced: about 1 year ago
JSON representation
Conventional Commits parser written in Go
- Host: GitHub
- URL: https://github.com/release-lab/conventional-commit-parser
- Owner: release-lab
- License: other
- Created: 2021-10-07T03:36:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-19T15:56:12.000Z (about 4 years ago)
- Last Synced: 2025-01-22T12:45:23.008Z (about 1 year ago)
- Topics: commit, conventional-commit, conventional-commits
- Language: Go
- Homepage:
- Size: 46.9 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/release-lab/conventional-commit-parser/actions)
[](https://goreportcard.com/report/github.com/release-lab/conventional-commit-parser)

[](https://996.icu)

### Conventional Commit Parser
This is a parser for [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)
```bash
go get -u github.com/release-lab/conventional-commit-parser
```
```go
package main
import (
"fmt"
"github.com/release-lab/conventional-commit-parser"
)
func main() {
result := conventionalcommitparser.Parse("feat: this is a commit message")
fmt.Printf("%+v\n", result)
}
```
### License
The [Anti-996 License](LICENSE)