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 🙏

© 2025 – Pkg Stats / Ryan Hefner

gamertag-forge

v1.0.1

Published

Fast, seedable gamertag generator with themes (Xbox, PSN, Twitch, Animal, TikTok, Bakery)

Readme

🎮 gamertag-forge

npm version
npm downloads
license

gamertag-forge is a simple, fast, and customizable gamertag generator with billions of unique combinations.
Supports fun presets like Xbox, PSN, Twitch, Animal, TikTok, and Bakery.
Beginner-friendly, works with require() (CommonJS).


✨ What This Package Does

  • Generates random gamertags instantly
  • 🎮 Preset styles for platforms like Xbox, PSN, Twitch, TikTok, etc.
  • 🔢 Optional numbers at the end (e.g., ShadowWolf1234)
  • 🎲 Seeded results → same seed always produces the same name
  • 🛠️ Zero setup / Zero dependencies
  • 📦 Ready to use in any Node.js project

📦 Install

Make sure you have Node.js installed. Then run:

npm install gamertag-forge

🚀 Quick Start (Beginner Example)

Create a file test.js:

const { generateGamertag } = require("gamertag-forge");

// Generate a random gamertag
console.log(generateGamertag()); 
// Example output: "Bravornova"

// Generate an Xbox-style gamertag
console.log(generateGamertag({ style: "xbox" }));
// Example output: "ShadowX420"

// Generate a Twitch-style gamertag with a fixed seed
console.log(generateGamertag({ style: "twitch", seed: 42 }));
// Example output: "LilPog_TTV"

Run it:

node test.js

🎨 Styles You Can Use

| Style | Description | Example Output | |-----------|----------------------------------------------|------------------| | default | Random syllables (billions of combos) | Bravornova | | xbox | Xbox gamer style | DarkSniper69 | | psn | PlayStation Network style | iTzSenpai99 | | twitch | Streamer tags with _TTV, Live, etc. | LilClutch_TTV | | animal | Fun animal mashups | FluffyWolf | | tiktok | Trendy TikTok handles | LilTrendz | | bakery | Sweet bakery-inspired names | ChocoMuffin |


⚙️ Options (API)

The main function is:

generateGamertag(options)

Options:

| Option | Type | Default | Description | |--------------|------------------|-------------|-------------| | style | string | "default" | Which theme to use (default, xbox, psn, twitch, animal, tiktok, bakery) | | seed | string / number | random | Same seed → same result (useful for consistency) | | minNumber | number | null | Minimum number suffix (e.g. 0) | | maxNumber | number | null | Maximum number suffix (e.g. 9999) |

Returns:
👉 A single string with your gamertag.


🔥 Advanced Examples

1. Deterministic (Seeded) Gamertags

Useful if you want repeatable names.

console.log(generateGamertag({ style: "psn", seed: 123 }));
// Always outputs the same tag for seed 123

2. Add Number Ranges

Add numbers to the end for more combinations.

console.log(generateGamertag({ style: "animal", minNumber: 0, maxNumber: 9999 }));
// => "CrazyTiger4821"

3. Generate a List of Gamertags

Perfect for generating multiple unique suggestions.

const { generateGamertag } = require("gamertag-forge");

const tags = Array.from({ length: 5 }, (_, i) =>
  generateGamertag({ style: "twitch", seed: "user" + i, minNumber: 0, maxNumber: 99 })
);

console.log(tags);
// Example: [ 'LilSweat_TTV24', 'ItsClutchLive07', 'BigPog_TTV51', ... ]

4. Mixing Styles

console.log(generateGamertag({ style: "default" })); // "Dravornova"
console.log(generateGamertag({ style: "bakery" }));  // "SugarMuffin"
console.log(generateGamertag({ style: "tiktok" }));  // "LilGlowzzz"

📊 How Many Names Can It Generate?

  • Default mode: ~1.56 billion unique combinations
  • With numbers (0–9999): ~15 trillion possible gamertags

➡️ You’ll never run out of unique names 🔥


🛣️ Roadmap

  • [ ] Add CLI support (npx gamertag-forge --style twitch --count 10)
  • [ ] More fun presets (Fantasy, Cyberpunk, Sports, Mythical)
  • [ ] Allow custom wordlists

🤝 Contributing

Want to add new themes or features?

  1. Fork this repo
  2. Create a branch
  3. Submit a pull request 🚀

📜 License

MIT © FeelSorrow