npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

surro

v1.1.0

Published

A TypeScript implementation of Apple's CoreLocation API

Downloads

10

Readme

Surro

Surro uses Apple's private CoreLocation API framework to find the location of nearby LTE cell sites. This can be useful for geolocating users, or for collecting data on nearby cell sites. This library is still under development, which means some features may change over time. In addition, support for Chinese mobile networks is not available, for the reasons described here.

Web

Surro is available as a web JavaScript library, via jsDelivr. To use it in a browser, you must configure a CORS proxy (see below).

Generate types

If you update the proto/apple.proto file, you can generate the types by running npx buf generate. Types are generated automatically upon build.

Functions

getCellLocation(mcc, mnc, cid, lac)

This function is ideal for geolocating a user based on their nearby cell sites. It's functionally equivalent to Google's Geolocation API, which actually only returns the location result for the first Cell ID passed in; for geolocating a user, I would recommend calling multiple times and interpolating the data yourself. Data is returned in an ichnea-compatible format.

getSurroundingCells(mcc, mnc, cid, lac)

This function returns all of the LTE cells that Apple has seen near the passed site, and their respective locations. This is useful more for data collection than for geolocation. It does have a few quirks—for instance, some cells (eg. especially brand new cell sites, temporary COWs), may not show up unless passed directly in.

setCorsProxyUrl(url)

Because Apple's server doesn't return an Access-Control-Allow-Origin header, Surro won't work in a browser directly without a CORS Proxy. This function can be called multiple times.

Thanks to:

  • https://github.com/acheong08/apple-corelocation-experiments/
  • https://codeberg.org/joelkoen/wtfps/