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

phone-circle-locator

v1.0.0

Published

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

Readme

@philotheephilix/phone-number-circle-locator

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

Covers 2,576 four-digit prefixes across all major Indian carriers including Airtel, Vodafone, Idea, BSNL, Jio, Tata Docomo, Aircel, and more.

Installation

npm install @philotheephilix/phone-number-circle-locator

Usage

JavaScript

const { lookup, getCircle, getOperator } = require("@philotheephilix/phone-number-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 "@philotheephilix/phone-number-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"
getCircle("9820123456");  // "MUMBAI"

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

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

getOperator("9900123456");  // "AIRTEL"
getOperator("9920123456");  // "VODAFONE"
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 | Coverage | |---|---| | AIRTEL | Pan India | | VODAFONE | Pan India | | IDEA | Pan India | | BSNL | Pan India | | RELIANCE | Multiple circles | | TATA DOCOMO | Multiple circles | | AIRCEL | Multiple circles | | MTNL | Delhi, Mumbai | | UNINOR | Multiple circles | | MTS | Multiple circles | | LOOP MOBILE | Mumbai | | VIDEOCON | Multiple circles |

Telecom Circles

The following circles are covered:

Andhra Pradesh, Assam, Bihar & Jharkhand, Chennai, Delhi, Gujarat, Haryana, Himachal Pradesh, Jammu & Kashmir, Karnataka, Kerala, Kolkata, Madhya Pradesh & Chhatisgarh, Maharashtra, Mumbai, North East, Odisha, Punjab, Rajasthan, Tamilnadu, Uttar Pradesh (E), Uttar Pradesh (W) & Uttarakhand, West Bengal

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

Data Source

Phone prefix data sourced from IndiaMobileNumbers.

License

MIT