How to Detect If a User Is Using a VPN with JavaScript

This page summarizes the projects mentioned and recommended in the original post on dev.to

Sevalla - Deploy and host your apps and databases, now with $50 credit!
Sevalla is the PaaS you have been looking for! Advanced deployment pipelines, usage-based pricing, preview apps, templates, human support by developers, and much more!
sevalla.com
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
  1. cli

    Official Command Line Interface for the IPinfo API (IP geolocation and other types of IP data) (by ipinfo)

    async function checkVpnUsage() { const res = await fetch('https://ipinfo.io/json?token=YOUR_TOKEN'); const data = await res.json(); console.log('IP Info:', data); // Some services provide `privacy` or `proxy` fields if (data.privacy && (data.privacy.vpn || data.privacy.proxy)) { console.log('User is likely using a VPN or proxy.'); } else { console.log('No VPN/proxy detected.'); } } checkVpnUsage();

  2. Sevalla

    Deploy and host your apps and databases, now with $50 credit! Sevalla is the PaaS you have been looking for! Advanced deployment pipelines, usage-based pricing, preview apps, templates, human support by developers, and much more!

    Sevalla logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • What is the best Geolocation API in 2025?

    1 project | dev.to | 18 Apr 2025
  • Daylight – track sunrise / sunset times in your terminal

    2 projects | news.ycombinator.com | 9 Mar 2025
  • One-click Script to Set Up a Personal FTP on a Linux Cloud Server

    2 projects | dev.to | 9 Feb 2025
  • "IpSurv", an IP survey tool made in Python, has been released.

    1 project | dev.to | 30 Nov 2024
  • How does ChatGPT know my location?

    1 project | news.ycombinator.com | 26 Nov 2024

Did you know that Go is
the 4th most popular programming language
based on number of references?