import { getConnInfo } from 'hono/adapter'// Cloudflare Workersimport { getConnInfo } from 'hono/cloudflare-workers'const info = getConnInfo(c)console.log(info.remote.address) // From cf-connecting-ip header// Denoimport { getConnInfo } from 'hono/deno'const info = getConnInfo(c)console.log(info.remote.port) // Server port// Bunimport { getConnInfo } from 'hono/bun'const info = getConnInfo(c)// Node.jsimport { getConnInfo } from 'hono/node-server'const info = getConnInfo(c)