A JavaScript function to get user's location based on Cloudflare /cdn-cgi/trace
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.
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);
cf-ns.com
is the domain of the Cloudflare China Network, allowing users in mainland China to get location in low latency.
MIT