?
to view the shortcut list.Make sure you have Node.js installed.
Clone the code:
git clone https://github.com/jason5ng32/MyIP.git
Install and build:
npm install && npm run build
Run:
npm start
The program will run on port 18966.
Click the 'Deploy to Docker' button at the top to complete the deployment. Or, use the following shell:
docker run -d -p 18966:18966 --name myip --restart always jason5ng32/myip:latest
You can use the program without adding any environment variables, but if you want to use some advanced features, you can add the following environment variables:
Variable Name | Required | Default Value | Description |
---|---|---|---|
BACKEND_PORT |
No | "11966" |
The running port of the backend part of the program |
FRONTEND_PORT |
No | "18966" |
The running port of the frontend part of the program |
SECURITY_RATE_LIMIT |
No | "0" |
Controls the number of requests an IP can make to the backend server every 60 minutes (set to 0 for no limit) |
SECURITY_DELAY_AFTER |
No | "0" |
Controls the first X requests from an IP every 20 minutes that are not subject to speed limits, and after X requests, the delay will increase |
SECURITY_BLACKLIST_LOG_FILE_PATH |
No | "logs/blacklist-ip.log" |
Path setting. Records the list of IPs that triggered the limit after SECURITY_RATE_LIMIT is enabled |
BING_MAP_API_KEY |
No | "" |
API Key for Bing Maps, used to display the location of the IP on a map |
ALLOWED_DOMAINS |
No | "" |
Allowed domains for access, separated by commas, used to prevent misuse of the backend API |
IPCHECKING_API_KEY |
No | "" |
API Key for IPCheck.ing, used to obtain accurate IP geolocation information |
IPINFO_API_TOKEN |
No | "" |
API Token for IPInfo.io, used to obtain IP geolocation information through IPInfo.io |
IPAPIIS_API_KEY |
No | "" |
API Key for IPAPI.is, used to obtain IP geolocation information through IPAPI.is |
KEYCDN_USER_AGENT |
No | "" |
The domain name when using KeyCDN, must contain https prefix. Used to obtain IP address information through KeyCDN |
CLOUDFLARE_API |
No | "" |
API Key for Cloudflare, used to obtain AS system information through Cloudflare |
MAC_LOOKUP_API_KEY |
No | "" |
API Key for MAC Lookup, used to obtain MAC address information |
VITE_GOOGLE_ANALYTICS_ID |
Yes | "" |
Google Analytics ID, used to track user behavior |
VITE_CURL_IPV4_DOMAIN |
No | "" |
Provides the IPv4 domain for the CURL API to users |
VITE_CURL_IPV6_DOMAIN |
No | "" |
Provides the IPv6 domain for the CURL API to users |
VITE_CURL_IPV64_DOMAIN |
No | "" |
Provides the dual-stack domain for the CURL API to users |
Note that if any of the CURL series environment variables are missing, the CURL API will not be enabled.
Create environment variables:
cp .env.example .env
Modify .env
, and for example, add the following:
BACKEND_PORT=11966
FRONTEND_PORT=18966
BING_MAP_API_KEY="YOUR_KEY_HERE"
ALLOWED_DOMAINS="example.com"
IPCHECKING_API="YOUR_KEY_HERE"
Then restart the backend service.
You can add environment variables when running Docker, for example:
docker run -d -p 18966:18966
-e BING_MAP_API_KEY="YOUR_KEY_HERE"
-e ALLOWED_DOMAINS="example.com"
-e IPCHECKING_API="YOUR_TOKEN_HERE"
--name myip
jason5ng32/myip:latest
If you're using a proxy for internet access, consider adding this rule to your proxy configuration (modify it according to your client). This setup lets you check both your real IP and the IP when using the proxy:
# IP Testing
IP-CIDR,1.0.0.1/32,Proxy,no-resolve
IP-CIDR6,2606:4700:4700::1111/128,Proxy,no-resolve
DOMAIN,4.ipcheck.ing,DIRECT
DOMAIN,6.ipcheck.ing,DIRECT
# Rule Testing
DOMAIN,ptest-1.ipcheck.ing,Proxy1
DOMAIN,ptest-2.ipcheck.ing,Proxy2
DOMAIN,ptest-3.ipcheck.ing,Proxy3
DOMAIN,ptest-4.ipcheck.ing,Proxy4
DOMAIN,ptest-5.ipcheck.ing,Proxy5
DOMAIN,ptest-6.ipcheck.ing,Proxy6
DOMAIN,ptest-7.ipcheck.ing,Proxy7
DOMAIN,ptest-8.ipcheck.ing,Proxy8
When version 2.0 was released, I said that 70% of the code for this program was not written by me, but by ChatGPT. After about 90 interactions, plus some minor manual adjustments, the entire codebase was completed.
Of course, the architecture and UI still required my own design.
With the release of version 3.0 and subsequent versions, the proportion of code written with the help of ChatGPT has gradually decreased, now estimated to be between 40% and 50%. On the contrary, in this process, I went from having no knowledge of JavaScript and Vue to being able to understand most of the JS code, and I can now write some on my own.
Thanks to AI, it has given me, an unemployed product manager, a rapid opportunity to learn programming.