namastejs
Version:
A spiritual greeting from your JavaScript code. Because every function deserves a 'Namaste 🙏'
117 lines (106 loc) • 1.78 kB
JavaScript
const { style } = require("../../../theme");
const WORDS = [
// ─── EASY (warm-up) ───
"cat",
"dog",
"sun",
"moon",
"star",
"tree",
"rain",
"fire",
"wind",
"sky",
"code",
"bug",
"run",
"web",
"app",
// ─── BASIC TECH ───
"node",
"react",
"array",
"logic",
"input",
"output",
"stack",
"queue",
"loop",
"class",
"object",
"string",
// ─── JAVASCRIPT CORE ───
"promise",
"async",
"await",
"closure",
"callback",
"event",
"scope",
"hoisting",
"prototype",
"context",
"function",
// ─── BACKEND / SERVER ───
"express",
"server",
"router",
"request",
"response",
"middleware",
"endpoint",
"database",
"schema",
"model",
// ─── DATABASE ───
"mongo",
"mongoose",
"query",
"index",
"document",
"collection",
"aggregate",
// ─── DEVOPS / TOOLS ───
"docker",
"container",
"image",
"volume",
"network",
"pipeline",
"deploy",
"build",
// ─── ADVANCED (late game chaos 😈) ───
"authentication",
"authorization",
"synchronization",
"optimization",
"performance",
"architecture",
"scalability",
"concurrency",
"configuration",
"virtualization",
// ─── FUN ───
"namaste",
"developer",
"terminal",
"keyboard",
"debugging",
"refactor",
"opensource",
];
const WORD_COLORS = [
style.red,
style.green,
style.yellow,
style.blue,
style.cyan,
style.magenta,
style.pink,
style.orange,
style.gold,
style.teal,
style.skyBlue,
style.purple,
];
module.exports = { WORDS, WORD_COLORS };