
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
wifi-triangulate
Advanced tools
Finds your current position on planet earth using the wifi access points in your vicinity
Finds your current position on planet earth using the wifi access points in your vicinity
npm install wifi-triangulate
This module requires that the wifi card on your computer is active and that you have access to the internet in order to communicate with Google so that it can triangulate your position.
var triangulate = require('wifi-triangulate')
triangulate(function (err, location) {
if (err) throw err
console.log(location) // => { lat: 38.0690894, lng: -122.8069356, accuracy: 42 }
})
Install wifi-triangulate as a global module to use it as a CLI:
npm install --global wifi-triangulate
Now just execute the wifi-triangulate
command:
$ wifi-triangulate
{
"lat": 38.0690894,
"lng": -122.8069356,
"accuracy": 42
}
MIT
FAQs
Finds your current position on planet earth using the wifi access points in your vicinity
The npm package wifi-triangulate receives a total of 7 weekly downloads. As such, wifi-triangulate popularity was classified as not popular.
We found that wifi-triangulate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.