{"id":37124837,"url":"https://github.com/bastih18/noping","last_synced_at":"2026-01-14T14:25:53.684Z","repository":{"id":280177017,"uuid":"941189927","full_name":"Bastih18/NoPing","owner":"Bastih18","description":"noping is a powerful and flexible network diagnostic tool written in Go.","archived":false,"fork":false,"pushed_at":"2025-03-02T00:56:00.000Z","size":41,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-14T10:47:48.150Z","etag":null,"topics":["asn-lookup","connectivity","diagnostics","geoip","icmp","latency","network-monitoring","network-tools","networking","ping","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/Bastih18.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}},"created_at":"2025-03-01T17:47:37.000Z","updated_at":"2025-03-02T00:55:57.000Z","dependencies_parsed_at":"2025-03-01T19:31:57.242Z","dependency_job_id":"35fbe647-5f1f-47f7-b915-06cdf2da26f8","html_url":"https://github.com/Bastih18/NoPing","commit_stats":null,"previous_names":["bastih18/noping"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/Bastih18/NoPing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bastih18%2FNoPing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bastih18%2FNoPing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bastih18%2FNoPing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bastih18%2FNoPing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bastih18","download_url":"https://codeload.github.com/Bastih18/NoPing/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bastih18%2FNoPing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28422978,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["asn-lookup","connectivity","diagnostics","geoip","icmp","latency","network-monitoring","network-tools","networking","ping","tcp","udp"],"created_at":"2026-01-14T14:25:53.138Z","updated_at":"2026-01-14T14:25:53.674Z","avatar_url":"https://github.com/Bastih18.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# noping\n\n`noping`  is a powerful and flexible network diagnostic tool written in Go. It allows users to send ICMP, TCP, or UDP pings to a specified IP address, making it useful for testing connectivity, diagnosing network issues, and measuring response times.\n\n## Features\n\n- Supports ICMP, TCP, and UDP pinging (UDP is currently experimental).\n- Defaults to ICMP when no port is specified.\n- Customizable port, timeout and amount of pings.\n- Minimal output mode for clean results.\n- Provides ASN data, and geo-location data.\n- Fast and efficient.\n\n\n## Installation\n\nEnsure you have Go installed, then run:\n```bash\ngo install github.com/Bastih18/NoPing@latest\n```\nOr clone and build manually:\n```bash\ngit clone https://github.com/Bastih18/NoPing.git\ncd NoPing\ngo build -o noping .\n```\nFor local development please follow the [Local Development Guide](https://github.com/Bastih18/NoPing/blob/main/SETUP_LOCAL_DEV.md)\n## Usage\n\n```bash\nnoping \u003cip\u003e [OPTIONS]\n```\n\n#### Arguments\n- `ip` - IP address to ping.\n\n#### Options\n| Flag | Description |\n| - | - |\n| `-h, --help` | Show the help menu. |\n| `-p, --port \u003cport\u003e` | Specify port to be pinged (default: ICMP if none is given). |\n| `-c, --count \u003ccount\u003e` | Number of pings (default: 65535) |\n| `-t, --timeout \u003cms\u003e` | Timeout in milliseconds (default: 1000) |\n| `-m, --minimal` | Minimal output mode. |\n| `-v, --version` | Print detailed version information.\n| `--proto \u003ctcp/udp\u003e` | Protocol to use when a port is specified (default: TCP) |\n| `-pa, --packet \u003cpacket\u003e` | Packet to send to UDP target (default: tries to find a valid packet based on port) |\n| `--update [version]` | Update noping to the specified version (when empty, it updates to the latest version).\n\n## Examples\n\nPing with ICMP:\n```bash\nnoping 192.168.1.1\n```\n\nPing with TCP on port 80:\n```bash\nnoping 192.168.1.1 -p 80\n```\n\nSet timeout and number of pings:\n```bash\nnoping 192.168.1.1 -c 10 -t 500\n```\n\nUse UDP on port 53:\n```bash\nnoping 192.168.1.1 --proto udp -p 53\n```\n\n## License\n\nLicensed under the MIT License. See [LICENSE](https://github.com/Bastih18/NoPing/blob/main/LICENSE) for details.\n## Contributing\n\nContributions are always welcome! Submit issues or pull requests\n\n## Authors\n\n- [@bastih18](https://github.com/bastih18)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbastih18%2Fnoping","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbastih18%2Fnoping","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbastih18%2Fnoping/lists"}