feat: implement line counter as node console app in typescript

This commit is contained in:
Stevan Freeborn
2025-04-22 23:46:09 -05:00
commit 964f8211ae
8 changed files with 329 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# Line Counter
This is a console app that monitors a git repository and reports on the number of lines changed in the repository while it is running. The results are displayed in the console and are written to a file.
## Installation
```pwsh
npm install -g @stevanfreeborn/line-counter
```
## Usage
```pwsh
line-counter <path-to-repo> <path-to-output-dir> [polling-interval-in-seconds]
```