ConqPing is a powerful, cross-platform ping utility designed for network diagnostics and latency monitoring. It is built in C++ for maximum performance and offers detailed statistics.
You can install ConqPing with a single command. The installation will automatically download the correct version for your system and make the conqping command available globally.
Run the following command in PowerShell:
irm https://raw.githubusercontent.com/Comquister/ConqPing/main/install.ps1 | iexRun the following command in your terminal:
curl -fsSL https://raw.githubusercontent.com/Comquister/ConqPing/main/install.sh | bashOnce installed, you can use the command conqping from anywhere.
conqping <IP>Ping Google DNS:
conqping 8.8.8.8Ping Cloudflare DNS:
conqping 1.1.1.1- Cross-Platform: Works on Windows, Linux, and macOS (x64, ARM64, x86).
- High Performance: Written in C++ for low overhead.
- Detailed Stats: Provides real-time latency updates and packet loss information.
- Easy Install: Simple one-line installation scripts.
If you prefer to build from source, you will need CMake and a C++ compiler.
-
Clone the repository:
git clone https://github.com/Comquister/ConqPing.git cd ConqPing -
Generate build files:
cmake -B build -S cpp
-
Build:
cmake --build build --config Release