https://github.com/skillcoder/tcp-ping-server
Simple tcp ping server in GO
https://github.com/skillcoder/tcp-ping-server
Last synced: 4 months ago
JSON representation
Simple tcp ping server in GO
- Host: GitHub
- URL: https://github.com/skillcoder/tcp-ping-server
- Owner: skillcoder
- Created: 2018-09-13T17:18:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-15T14:47:22.000Z (almost 4 years ago)
- Last Synced: 2025-01-13T23:33:00.642Z (5 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TCP Ping Server
### GET
```
mkdir -p ~/go/src/github.com/skillcoder
cd ~/go/src/github.com/skillcoder
git clone https://github.com/skillcoder/tcp-ping-server.git
cd tcp-ping-server
```### BUILD
```
go build
```### RUN
```
TCPING_SERVICE_LISTEN=127.0.0.1:8888 ./tcp-ping-server
```### Install as daemon
See in [INSTALL.md](INSTALL.md)