EdgeOne Pages Next.js Starter - Edge Functions
Run code at the edge, no server management required, providing the lowest latency global deployment.
Suitable for real-time data processing and geolocation services, the advantage is global edge deployment and ultra-low latency response, suitable for lightweight API, real-time notifications, and content personalization.
export default function onRequest(context) { const {geo} = context; return new Response(JSON.stringify({ message: 'Hello Edge!', geo: geo, }), { headers: { 'Content-Type': 'application/json', }, }) }