A simple web-based ping tool that displays real-time ping command output in the browser.
Available Implementations:
- Python: Flask + Flask-SocketIO + Eventlet
- Node.js: Express + Socket.IO
git clone git@github.com:sincerefly/online-ping-demo.git
cd online-ping-democd python3
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
python3 app.pycd nodejs
npm install
node app.jsOpen http://127.0.0.1:5000 in your browser.
