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

id-mobile-detector

v1.0.2

Published

A lightweight library to detect Indonesian mobile provider based on phone number prefixes.

Readme

id-mobile-detector

A lightweight TypeScript library for detecting Indonesian mobile providers based on phone number prefixes.

Installation

To install the library, you can use npm or yarn:

npm install id-mobile-detector

Usage

You can use this library to detect the mobile provider of a phone number by simply passing the phone number as a string.

Example

import { detectProvider } from 'id-mobile-detector';

// Example usage
const phoneNumber = "081234567890";  // Telkomsel number
const provider = detectProvider(phoneNumber);

console.log(provider);  // Output: Telkomsel

Function: detectProvider

Detects the provider based on the phone number prefix.

Parameters:

  • phoneNumber (string): The phone number to detect. It should be a string containing only digits and an optional leading + (for international format).

Returns:

  • string: The name of the mobile provider (e.g., "Telkomsel", "Indosat", "XL", etc.), or "Unknown provider" if the provider is not found. If the phone number is invalid, it returns "Invalid phone number".

Example:

// Valid phone numbers
console.log(detectProvider("081234567890"));  // Output: Telkomsel
console.log(detectProvider("+628123456789")); // Output: Telkomsel

// Invalid phone number (incorrect length)
console.log(detectProvider("0812"));  // Output: Invalid phone number

// Unknown provider
console.log(detectProvider("090000000000"));  // Output: Unknown provider

Prefix Mapping

The library uses a predefined mapping of phone number prefixes to Indonesian mobile providers:

  • Telkomsel: 0811, 0812, 0813, 0821, 0822, 0823, 0852, 0853, 0851
  • Indosat Ooredoo: 0814, 0815, 0816, 0855, 0856, 0857, 0858
  • XL Axiata: 0817, 0818, 0819, 0859, 0877, 0878
  • Axis: 0838, 0831, 0832, 0833
  • Tri: 0895, 0896, 0897, 0898, 0899
  • Smartfren: 0881, 0882, 0883, 0884, 0885, 0886, 0887, 0888, 0889

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Feel free to submit issues or pull requests if you want to contribute improvements or bug fixes.