https://github.com/nayak-nirmalya/go-health-checker
A tiny tool that checks wheather a website is running or is down.
https://github.com/nayak-nirmalya/go-health-checker
cli go-cli golang health-check
Last synced: 4 months ago
JSON representation
A tiny tool that checks wheather a website is running or is down.
- Host: GitHub
- URL: https://github.com/nayak-nirmalya/go-health-checker
- Owner: nayak-nirmalya
- License: mit
- Created: 2023-10-20T14:16:48.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-20T14:16:53.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T12:11:49.953Z (9 months ago)
- Topics: cli, go-cli, golang, health-check
- Language: Go
- Homepage: https://portfolio-nayak-nirmalya.vercel.app/
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## HealthChecker
A tiny tool that checks wheather a website is running or is down.
Credits: [Akhil Sharma](https://github.com/AkhilSharma90)
## Installation
> This project needs to Go (At least 1.13) to compile.
**Get the Repo.**
```bash
go get github.com/nayak-nirmalya/go-health-checker
```OR
```bash
git clone github.com/nayak-nirmalya/go-health-checker
```**Run Project.**
```bash
go run . --domain google.com
```OR
```bash
go build && ./go-health-checker --domain google.com
```## Usage
```
NAME:
HealthChecker - A tiny tool that checks wheather a website is running or is down.USAGE:
go-health-checker [global options] command [command options] [arguments...]COMMANDS:
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--domain value, -d value Domain name to check.
--port value, -p value Port number to check.
--help, -h show help (default: false)
```