Yonle
1

Wimia
Wimia is a Simple IP checker with HTTP server.
Wimia Stands for What is my IP address. That’s why, We name it as Wimia.
Not understand?
Wimia will gives you 3 - 5 IP address. The first one, is Your Real IP Address!
We never get your IP address for bad stuff 
Credit
Special
Made for Glitch
By @yonle
Community
Demo
https://wimia.glitch.me
1 Like
This is ok, but why not add more, like geolocation, port checking, abuse score, etc?
1 Like
Yonle
3
This is Simple IP checker only. Not means we will know the geolocation and something.
If you want, You can remix this project.
It just looks like it just tells you your IP address by getting the X-Fowarded-For header.
const http = require("http")
http.createServer((req, res) => {
res.end(req.headers["x-forwarded-for"]||req.connection.remoteAddress)
}).listen(3000, () => console.log("Listening on port 3000"));
1 Like
Yonle
5
Yeah. Almost all website using that method.
Perhaps you could make in JSON. Showing all of the data from the IP
2 Likes
system
Closed
7
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.