1.0.2 • Published 10 months ago

get-cloudflare-location v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

☁️ get-cloudflare-location

A JavaScript function to get user's location based on Cloudflare /cdn-cgi/trace

How it works

This function will send a request to https://www.cloudflare.com/cdn-cgi/trace and https://cf-ns.com/cdn-cgi/trace and parse the response to get the user's location.

Usage

npm install get-cloudflare-location
import getCloudflareLocation from "get-cloudflare-location";

interface GetCloudflareLocationOptions {
  timeout?: number; // The timeout for the request in milliseconds. Defaults to 5000
  cache?: string; // Whether to cache the result of the request. Defaults to true.
}

const options: GetCloudflareLocationOptions | undefined = {
  timeout: 5000,
  cache: true,
};

const location = await getCloudflareLocation(options);

License

MIT

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago