https://github.com/chadnpc/clihelper.core
A collections of essential PowerShell functions to improve devx
https://github.com/chadnpc/clihelper.core
Last synced: 4 months ago
JSON representation
A collections of essential PowerShell functions to improve devx
- Host: GitHub
- URL: https://github.com/chadnpc/clihelper.core
- Owner: chadnpc
- License: wtfpl
- Created: 2024-11-14T12:39:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-29T22:51:46.000Z (5 months ago)
- Last Synced: 2026-01-30T12:19:50.351Z (5 months ago)
- Language: PowerShell
- Homepage: https://www.powershellgallery.com/packages/cliHelper.core
- Size: 1.36 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Usage
```PowerShell
Install-Module cliHelper.core
```
then
```PowerShell
Import-Module cliHelper.core
$art = Create-CliArt "https://pastebin.com/raw/p29UR385" -Taglines "Build. Ship. Repeat."; $art.Replace("x.y.z", "0.3.0");
$art.Write(15, $false, $true)
$RequestParams = @{
Uri = 'https://jsonplaceholder.typicode.com/todos/1'
Method = 'GET'
}
$result = [ProgressUtil]::WaitJob("Making a request", { Param($rp) Start-Sleep -Seconds 2; Invoke-RestMethod @rp }, $RequestParams) | Receive-Job
echo $result
```
## license
This project is licensed under the [WTFPL License](LICENSE).
## thank you!
👍 ✨ Special thanks goes to:
- @fleschutz for the mega collection of scripts!
- @franklesniak for lots of inspiring ideas!
- @StartAutomating for publishing modules like wtx and ugit.