π IP: ${req.ipInfo.ip || "IP could not be displayed"}
+
+
βͺοΈ Range: ${range || "Range could not be displayed"}
+
+
π Country: ${req.ipInfo.country || "Country could not be displayed"}
+
+
πΊοΈ Region: ${req.ipInfo.region || "Region could not be displayed"}
+
+
β²οΈ Timezone: ${req.ipInfo.timezone || "Timezone could not be displayed"}
+
+
π City: ${req.ipInfo.city || "City could not be displayed"}
+
+
π Coordinates: ${ll || "Coordinates could not be displayed"}
+
+
π Metro: ${req.ipInfo.metro}
+
+
π§ Area: ${req.ipInfo.area}
+
+
+
+
+`);
+
+});
+
+app.listen(app.get('PORT'), function() {
+ console.log(`Application started with port ${PORT}`)
+ console.log(`Any Info that appears here means someone (can be you too) clicked onto your web app.`)
+});