{"id":29878255,"url":"https://github.com/csubbdev/pingpro","last_synced_at":"2025-10-30T04:18:14.053Z","repository":{"id":306895598,"uuid":"1027578318","full_name":"csubbdev/pingpro","owner":"csubbdev","description":"Ping websites or IP addresses using TCP, UDP, or ICMP protocols with customizable ports, timeouts, and intervals.","archived":false,"fork":false,"pushed_at":"2025-07-28T10:09:32.000Z","size":14,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-28T10:15:17.977Z","etag":null,"topics":["cli-tool","cross-platform","devops","diagnostics","golang","icmp","network-tools","network-utility","networking","ping","sysadmin","tcp","udp"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/csubbdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-28T08:14:37.000Z","updated_at":"2025-07-28T09:52:38.000Z","dependencies_parsed_at":"2025-07-28T10:17:29.619Z","dependency_job_id":"36c227cb-8671-4c15-aff1-7befe2e842b5","html_url":"https://github.com/csubbdev/pingpro","commit_stats":null,"previous_names":["csubbdev/pingpro"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/csubbdev/pingpro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csubbdev%2Fpingpro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csubbdev%2Fpingpro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csubbdev%2Fpingpro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csubbdev%2Fpingpro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/csubbdev","download_url":"https://codeload.github.com/csubbdev/pingpro/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/csubbdev%2Fpingpro/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268003447,"owners_count":24179290,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli-tool","cross-platform","devops","diagnostics","golang","icmp","network-tools","network-utility","networking","ping","sysadmin","tcp","udp"],"created_at":"2025-07-31T07:01:35.273Z","updated_at":"2025-10-30T04:18:13.938Z","avatar_url":"https://github.com/csubbdev.png","language":"Go","readme":"# PingPro\r\n\r\nPingPro is a command-line network ping tool written in Go. It supports multiple protocols including TCP, UDP, and ICMP, allowing you to test connectivity to a host and port with configurable options.\r\n\r\n## Showcase Image\r\n\r\n![image](https://github.com/user-attachments/assets/83d31f37-ded8-4c3d-8369-7cf470d50853)\r\n\r\n## Features\r\n\r\n* Supports TCP, UDP, and ICMP ping types\r\n* Configurable timeout per ping\r\n* Configurable interval between pings\r\n\r\n## Installation\r\n\r\nTo install PingPro, you need to have Go installed on your system. Then you can build the project using:\r\n\r\n```bash\r\ngo build -o pingpro main.go\r\n```\r\n\r\nAlternatively, you can get the package using:\r\n\r\n```bash\r\ngo get github.com/csubbdev/pingpro\r\n```\r\n\r\n## Adding PingPro to your system PATH\r\n\r\n### Windows 11\r\n\r\n1. Build the executable as shown above.\r\n2. Move the `pingpro.exe` file to a directory of your choice, for example: `C:\\Tools\\pingpro\\`\r\n3. Add this directory to your system PATH environment variable:\r\n\r\n   * Open the Start menu and search for \"Environment Variables\".\r\n   * Click \"Edit the system environment variables\".\r\n   * In the System Properties window, click \"Environment Variables\".\r\n   * Under \"System variables\", find and select the \"Path\" variable, then click \"Edit\".\r\n   * Click \"New\" and add the path to the directory where you placed `pingpro.exe` (e.g., `C:\\Tools\\pingpro\\`).\r\n   * Click OK on all dialogs to apply the changes.\r\n4. Open a new Command Prompt window and type `pingpro` to run the tool from anywhere.\r\n\r\n### Linux\r\n\r\n1. Build the executable:\r\n\r\n```bash\r\ngo build -o pingpro main.go\r\n```\r\n\r\n2. Move the `pingpro` binary to a directory in your PATH, for example:\r\n\r\n```bash\r\nsudo mv pingpro /usr/local/bin/\r\n```\r\n\r\n3. Make sure it's executable:\r\n\r\n```bash\r\nchmod +x /usr/local/bin/pingpro\r\n```\r\n\r\n4. Now you can use `pingpro` from any terminal.\r\n\r\n## Building for Multiple Platforms\r\n\r\nTo build `pingpro` for multiple operating systems and architectures, install [`gox`](https://github.com/mitchellh/gox):\r\n\r\n```bash\r\ngo install github.com/mitchellh/gox@latest\r\n```\r\n\r\nThen run:\r\n\r\n```bash\r\ngox -os=\"windows linux\" -arch=\"amd64\" -output=\"build/{{.OS}}_{{.Arch}}/pingpro\"\r\n```\r\n\r\nThis will create builds for Windows and Linux in the `build/` directory.\r\n\r\n## Usage\r\n\r\n```bash\r\npingpro \u003chost\u003e \u003cport\u003e [flags]\r\n```\r\n\r\n### Flags\r\n\r\n* `-t, --type` : Ping type to use. Options are `tcp`, `udp`, or `icmp`. Default is `tcp`.\r\n* `-o, --timeout` : Timeout per ping in seconds. Default is 3 seconds.\r\n* `-i, --interval` : Interval between pings in milliseconds. Default is 1000 ms.\r\n\r\n### Example\r\n\r\nPing a host using TCP on port 80 with default settings:\r\n\r\n```bash\r\npingpro example.com 80\r\n```\r\n\r\nPing a host using UDP on port 53 with a 5-second timeout output:\r\n\r\n```bash\r\npingpro example.com 53 -t udp -o 5\r\n```\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License.\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsubbdev%2Fpingpro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcsubbdev%2Fpingpro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcsubbdev%2Fpingpro/lists"}