Public
Script
1
2
3
4
5
6
// https://api.val.town/v1/express/zzz.IP
export async function IP(req, res) {
const ip = req.get("true-client-ip") ??
req.get("x-forwarded-for")?.split(",")[0];
res.send(ip);
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023