https://github.com/skillcoder/tcp-ping-server
Simple tcp ping server in GO
https://github.com/skillcoder/tcp-ping-server
Last synced: about 1 month 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 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-15T14:47:22.000Z (almost 5 years ago)
- Last Synced: 2025-03-03T12:47:55.214Z (over 1 year 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)