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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@philotheephilix/phone-number-circle-locator

v2.1.0

Published

Look up Indian mobile phone numbers to find the telecom circle and operator

Readme

phone-circle-locator

Look up Indian mobile phone numbers to find the telecom circle (region) and operator.

Covers 1,702 four-digit prefixes across all major Indian carriers including Airtel, Reliance Jio, Vodafone Idea, and BSNL.

Installation

npm install phone-circle-locator

Usage

JavaScript

const { lookup, getCircle, getOperator } = require("phone-circle-locator");

const result = lookup("+91 9900 123456");
console.log(result);
// {
//   phone: "9900123456",
//   prefix: "9900",
//   operator: "Airtel",
//   circle: "Karnataka"
// }

getCircle("9910123456");    // "Delhi"
getOperator("9910123456");  // "Airtel"

TypeScript

import { lookup, getCircle, getOperator, LookupResult } from "phone-circle-locator";

const result: LookupResult | null = lookup("+91 9900 123456");

if (result) {
  console.log(result.circle);    // "Karnataka"
  console.log(result.operator);  // "Airtel"
}

API

lookup(phone: string | number): LookupResult | null

Returns the full lookup result for a phone number, or null if the prefix is not found.

Parameters:

  • phone - An Indian mobile number as a string or number

Returns: LookupResult | null

interface LookupResult {
  phone: string;     // Normalized 10-digit number
  prefix: string;    // 4-digit prefix used for lookup
  operator: string;  // Telecom operator name
  circle: string;    // Telecom circle (region)
}

getCircle(phone: string | number): string | null

Returns just the telecom circle name, or null if not found.

getCircle("9900123456");  // "Karnataka"
getCircle("9910123456");  // "Delhi"

getOperator(phone: string | number): string | null

Returns just the operator name, or null if not found.

getOperator("9900123456");  // "Airtel"
getOperator("9920123456");  // "Vodafone Idea"
getOperator("9414098765");  // "BSNL"

Input Formats

The following phone number formats are all supported:

| Format | Example | |---|---| | 10-digit | 9900123456 | | With +91 | +919900123456 | | With 0 prefix | 09900123456 | | With spaces | +91 9900 123456 | | With dashes | 9900-123456 | | With parentheses | (9900) 123456 | | As number | 9900123456 |

Supported Operators

| Operator | |---| | Airtel | | Reliance Jio | | Vodafone Idea | | BSNL | | Aircel |

Telecom Circles

Andhra Pradesh, Assam, Bihar & Jharkhand, Delhi, Gujarat, Haryana, Himachal Pradesh, Jammu & Kashmir, Karnataka, Kerala, Madhya Pradesh & Chhattisgarh, Maharashtra & Goa, North East, Odisha, Punjab, Rajasthan, Tamil Nadu, UP East, UP West & Uttarakhand, Uttar Pradesh, West Bengal

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

Data Source

Phone prefix data sourced from in-mob-prefix by @hstsethi.

License

MIT