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

@chinmayn00b/faker-ind

v1.0.1

Published

Generate Fake Contextual Data For India Region

Readme

faker-ind

A comprehensive fake data generator for Indian People with support for multiple Indian languages.

Features

  • 🇮🇳 Multi-language support: Hindi, Bengali, Tamil, Telugu, Gujarati, Marathi, Kannada, Malayalam, Punjabi, Urdu, and English
  • 📱 Indian phone numbers: Generate realistic Indian mobile numbers
  • 🏦 Banking data: Indian bank names and account numbers
  • 👤 Names: Generate Indian names with proper gender support
  • 📝 Lorem text: Generate placeholder text in various Indian languages
  • 🎲 Random utilities: Numbers, booleans, arrays, and more

Installation

npm install @chinmayn00b/faker-ind
# or
pnpm add @chinmayn00b/faker-ind
# or
yarn add @chinmayn00b/faker-ind

Usage

import { fakerInd } from '@chinmayn00b/faker-ind'

// Initialize with default English locale
const faker = fakerInd({ language: 'Hindi' })

// Generate Indian names
console.log(faker.name.firstName()) // Aryan
console.log(faker.name.lastName())  // Sharma
console.log(faker.name.fullName())  // Aryan Sharma

// Generate phone numbers
console.log(faker.phone.number())        // 9876543210
console.log(faker.phone.number(true))    // +91 9876543210

// Generate banking data
console.log(faker.account.bank())           // State Bank of India
console.log(faker.account.accountNumber()) // 1234567890123456

// Generate lorem text
console.log(faker.lorem.word())   // Dhanyawad
console.log(faker.lorem.phrase()) // Aapka Swagat Hai

// Change language dynamically
faker.setLanguage('Bengali')
console.log(faker.name.firstName()) // Soumitro

Supported Languages

  • English
  • Hindi (हिंदी)
  • Bengali (বাংলা)
  • Tamil (தமிழ்)
  • Telugu (తెలుగు)
  • Gujarati (ગુજરાતી)
  • Marathi (मराठी)
  • Kannada (ಕನ್ನಡ)
  • Malayalam (മലയാളം)
  • Punjabi (ਪੰਜਾਬੀ)
  • Urdu (اردو)

API Reference

fakerInd(options)

Initialize the faker instance.

Options:

  • language: The language to use (default: 'English')

Methods

Random

  • faker.random.number(min?, max?): Generate random number
  • faker.random.boolean(): Generate random boolean
  • faker.random.arrayElement(array): Pick random array element
  • faker.random.objectElement(object): Pick random object value
  • faker.random.alphanumeric(count?): Generate alphanumeric string
  • faker.random.hexadecimal(count?): Generate hexadecimal string

Names

  • faker.name.firstName(gender?): Generate first name
  • faker.name.lastName(): Generate last name
  • faker.name.prefix(): Generate name prefix
  • faker.name.fullName(): Generate full name

Phone

  • faker.phone.serviceProvider(): Generate service provider name
  • faker.phone.number(intl?): Generate phone number

Account

  • faker.account.bank(): Generate bank name
  • faker.account.accountNumber(count?): Generate account number

Lorem

  • faker.lorem.word(): Generate a word
  • faker.lorem.phrase(): Generate a phrase

License

MIT