Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joanbono/ipchk
IP Checker
https://github.com/joanbono/ipchk
Last synced: 4 days ago
JSON representation
IP Checker
- Host: GitHub
- URL: https://github.com/joanbono/ipchk
- Owner: joanbono
- License: apache-2.0
- Created: 2023-08-18T16:05:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-18T16:41:09.000Z (over 1 year ago)
- Last Synced: 2024-05-02T04:39:39.355Z (9 months ago)
- Language: Makefile
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ipchk
Simple IP checker
## Usage
```sh
$ ipchk -version📟 ipchk v1.0.0
``````sh
# Returns information about your own IP
$ ipchk# Returns information about the IP 8.8.8.8
$ ipchk -ip 8.8.8.8
{
"as": "AS15169 Google LLC",
"city": "Ashburn",
"country": "United States",
"countryCode": "US",
"isp": "Google LLC",
"lat": 39.03,
"lon": -77.5,
"org": "Google Public DNS",
"query": "8.8.8.8",
"region": "VA",
"regionName": "Virginia",
"status": "success",
"timezone": "America/New_York",
"zip": "20149"
}# Returns information about the IP 8.8.8.8 using boring output
$ ipchk -ip 8.8.8.8 -nc
{"status":"success","country":"United States","countryCode":"US","region":"VA","regionName":"Virginia","city":"Ashburn","zip":"20149","lat":39.03,"lon":-77.5,"timezone":"America/New_York","isp":"Google LLC","org":"Google Public DNS","as":"AS15169 Google LLC","query":"8.8.8.8"}
```