
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
rap-name-generator
Advanced tools
Generate unique rapper names for hip hop artists. Supports English, Chinese and Japanese.
Generate unique rapper stage names instantly
🌐 Try Online | 🇺🇸 English | 🇨🇳 中文 | 🇯🇵 日本語
npm install rap-name-generator
Or use directly with npx:
npx rap-name-generator
import { generateRapNames, generateRandomRapName } from 'rap-name-generator';
// Generate a single random name
const name = generateRandomRapName();
console.log(name); // => "Lil' FlowMaster"
// Generate multiple names with descriptions
const names = generateRapNames({ count: 5 });
// => [{ name: "Big FlowKing", description: "Represents dominance..." }, ...]
// Chinese rap names (中文说唱名)
const chineseNames = generateRapNames({ language: 'zh', count: 5 });
// => [{ name: "MC龙飞", description: "象征着力量..." }, ...]
// Japanese rap names (日本語ラップ名)
const japaneseNames = generateRapNames({ language: 'ja', count: 5 });
// => [{ name: "龍王 Flow", description: "龍の王、最強のラッパー..." }, ...]
# Generate 8 random names
rap-name
# Single random name
rap-name -r
# Chinese names
rap-name -l zh
# Japanese names
rap-name -l ja
# Personalized
rap-name -n Alex -a Wild
# JSON output
rap-name -j -c 5
generateRandomRapName(language?)generateRandomRapName(); // English
generateRandomRapName('zh'); // Chinese
generateRandomRapName('ja'); // Japanese
generateRapNames(options?)| Option | Type | Default | Description |
|---|---|---|---|
language | 'en' | 'zh' | 'ja' | 'en' | Language |
count | number | 8 | Number of names |
firstName | string | - | Your name |
adjective | string | - | Style word |
Returns: Array<{ name: string, description: string }>
| Option | Alias | Description |
|---|---|---|
--help | -h | Show help |
--random | -r | Single random name |
--count <n> | -c | Number of names |
--lang <en|zh|ja> | -l | Language |
--name <name> | -n | Your first name |
--adjective <word> | -a | Style word |
--json | -j | JSON output |
| English | Chinese | Japanese |
|---|---|---|
| Big FlowKing | MC龙飞 | 龍王 Flow |
| Lil' Phoenix | 狂野虎 | ヤング ドラゴン |
| Young Dragon | 街头霸王 | 雷神 King |
| Ice Storm | 雷神韵 | 炎帝マスター |
| Shadow Ghost | 火焰哥 | 侍 Boss |
FAQs
Generate unique rapper names for hip hop artists. Supports English, Chinese and Japanese.
The npm package rap-name-generator receives a total of 0 weekly downloads. As such, rap-name-generator popularity was classified as not popular.
We found that rap-name-generator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.