https://github.com/cutwell/auto-version-numbering
NodeJS API service for generating version number .svg images for GitHub projects.
https://github.com/cutwell/auto-version-numbering
generator nodejs svg versioning
Last synced: about 2 months ago
JSON representation
NodeJS API service for generating version number .svg images for GitHub projects.
- Host: GitHub
- URL: https://github.com/cutwell/auto-version-numbering
- Owner: Cutwell
- License: mit
- Created: 2017-10-23T11:37:54.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2023-07-14T20:39:44.000Z (almost 3 years ago)
- Last Synced: 2025-01-29T11:28:30.292Z (over 1 year ago)
- Topics: generator, nodejs, svg, versioning
- Language: JavaScript
- Homepage: https://auto-version-numbering.vercel.app/preview/Cutwell/auto-version-numbering
- Size: 1.44 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Automatic Version Numbering
NodeJS API service for generating version number `.svg` images for GitHub projects.

## Routing
```mermaid
graph LR
A["https://auto-version-numbering.vercel.app"] -->|Route| B["/api"]
A --> C["/preview"]
B -->|GitHub Username| D["/:user"]
C --> D
D -- Github Repository --> E["/:projectName"]
E -- Optional Parameters --> F["?color=:hexcode"]
```
|`https://auto-version-numbering.vercel.app`|`/api` OR `/preview`|`/:user`|`/:projectName`|`?color=:hexcode`|
|:---:|:---:|:---:|:---:|:---:|
|Host domain|Use `/api` for use-cases, `/preview` is a HTML webpage previewing the `/api` `.svg` response.|The target GitHub repository owner username|The target GitHub repository name|Hexcode to customise the color of the image (optional, default `d5008f`)|