Getting the IP hono
# workers-help
z
Hey there, quick and simple question: Is there a way to get the IP of the client who is sending a request to the worker via hono? Because I can't seem to find it on the docs
k
const ip = c.req.header('CF-Connecting-IP');
z
Well, that solved it, thanks!