Edge Functions on Netlify

Reference examples for learning about Edge Functions on Netlify.


Geolocation

You can use Edge Functions to get information about a user's location to serve location-specific content and personalize their experience.

United States
Your country name
United States
Your country code
US
Your city
Columbus
Your coordinatse
39.9625, -83.0061
Your timezone
America/New_York

Geolocation information is available on the Context.geo object.

import { Context } from "@netlify/edge-functions";

export default async (request: Request, context: Context) => {
  // Here's what's available on context.geo

  // context: {
  //   geo: {
  //     city?: string;
  //     country?: {
  //       code?: string;
  //       name?: string;
  //     },
  //     subdivision?: {
  //       code?: string;
  //       name?: string;
  //     },
  //     latitude?: number;
  //     longitude?: number;
  //     timezone?: string;
  //   }
  // }

  return Response.json({
    geo: context.geo,
  });
};

See this in action

Explore more examples


What are Edge Functions?

Using JavaScript and TypeScript, Netlify Edge Functions give you the power to modify network requests to localize content, serve relevant ads, authenticate visitors, A/B test content, and much more!

This all happens at the Edge — directly from the worldwide location closest to each user.

To use Edge Functions on Netlify, add JavaScript or TypeScript files to a /netlify/edge-functions directory in your project.

Learn more in the docs.


Deploy this site to Netlify

Try out Edge Functions on Netlify today! Click the button below to deploy this site with all of its demos to your Netlify account.

Deploy to Netlify