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

@v0idd0/fakeit

v1.0.1

Published

fakeit — locale-consistent fake test data: names, addresses, phones, emails, credit cards (Luhn-valid). 58 locales coupled to country, no Russian Johns or Moldovan shekels. Free forever from vøiddo.

Readme

fakeit

npm version npm downloads License: MIT Node ≥14

Generate realistic fake test data. Seedable, schemable, fast.

$ fakeit name email phone --count 3
name,email,phone
nora park,[email protected],+1-415-555-0143
kai obasanjo,[email protected],+44-20-7946-0382
yuki tanaka,[email protected],+81-3-7946-0192

Why fakeit

You need a fixture file with 100 plausible-looking users for staging. The big faker libraries (@faker-js/faker) are 3+ MB and pull in every locale. You don't need every locale; you need a CSV in 200ms. fakeit is that subset: realistic names from many cultures (curated, not generated), test-card numbers that pass Luhn, phone numbers in legally-reserved fictional ranges, all behind a single CLI that defaults to CSV output.

Install

npm install -g @v0idd0/fakeit

Usage

# Basic
fakeit name email --count 5

# JSON output
fakeit name address --json

# Reproducible with seed
fakeit name email --count 100 --seed 42 > fixtures.csv

# All fields
fakeit name email phone address company creditCard isbn iban date paragraph

Available fields

| Field | Example | |---|---| | name | nora park | | firstName | nora | | lastName | park | | email | [email protected] | | phone | +1-415-555-0143 | | address | 1234 main st, tel aviv, IL 12345 | | street | 1234 main st | | city | tel aviv | | country | IL | | zip | 12345 | | company | orbital labs | | isbn | 978… (valid ISBN-13) | | creditCard | 4242… (passes Luhn, test prefix) | | iban | DE89… (valid format) | | date | 2024-08-13 | | paragraph | lorem ipsum dolor sit amet… | | lorem | multi-paragraph lorem |

Test data, not real data

  • Phones use 555 prefix (US) or 7946 (UK fictional film range) — no real numbers will be reached.
  • Emails use @example.com (RFC 2606 reserved domain).
  • Credit cards start with 4242 (Stripe test card prefix) and pass Luhn.
  • IBANs are valid format, fictitious account.
  • Names are a curated mix from many cultures, not LLM-generated. We hand-pick to avoid stereotyped pairings.

Compared to alternatives

| tool | bundle size | locales | seedable | CLI | |---|---|---|---|---| | fakeit | ~25 KB | mixed by default | yes | yes (CSV/JSON) | | @faker-js/faker | ~3 MB | 75+ via locale packs | yes | community CLIs | | Mockaroo | web only | many | yes | web only | | chance.js | ~80 KB | English | yes | community CLIs |

For complex schema-driven generation with relations between fields (orders → users → addresses), @faker-js/faker plus a small generator script is the right tool. For CSV/JSON fixtures of independent records, fakeit is the smaller hammer.

FAQ

Are credit-card numbers really "safe"? They're prefixed with 4242 (Visa test card namespace) and pass Luhn. They are not bound to any real account but are recognized by Stripe/Adyen sandboxes as test cards.

Why are phones US/UK only? Because those are the two ranges with explicit fictional-number reservations (US 555, UK 020 7946). We refuse to generate other countries' numbers because they could collide with real subscribers.

How stable are seeds across versions? Seed → output is stable within a major version (1.x.x). When we bump major, we may rotate the wordlists; fixture files that were checked in still parse, but regenerating with the same seed in a new major may produce different rows.

Why no password field? Because tests should never seed users with weak passwords, even for show. Use passgen (sister tool) and feed its output through your own hash function.

Programmatic API

import { generate, Faker } from '@v0idd0/fakeit';

// Quick API
const users = generate(['name', 'email'], 100, 42);

// Or finer control with Faker class
const f = new Faker(42);
const user = {
  name:    f.name(),
  email:   f.email(),
  isbn:    f.isbn(),
  joined:  f.date({ from: '2020-01-01' }),
};

More from the studio

This is one tool out of many — see from-the-studio.md for the full lineup of vøiddo products (other CLI tools, browser extensions, the studio's flagship products and games).

License

MIT.


Built by vøiddo — a small studio shipping AI-flavoured products, free dev tools, Chrome extensions and weird browser games.