UNPKG

namastejs

Version:

A spiritual greeting from your JavaScript code. Because every function deserves a 'Namaste 🙏'

44 lines (34 loc) 1.81 kB
const help = () => { const helpMessage = ` 🧰 namastejs — Dev CLI with spiritual vibes and real utilities 🙏 Usage: npx namastejs Show namaste message and blessing npx namastejs update --my=BRANCH --from=SOURCE Git branch updater npx namastejs ports Show active ports npx namastejs ports --kill=PORT Kill a port npx namastejs breathe 60s breathing animation npx namastejs size Show largest files/folders npx namastejs vault [command] Manage saved passwords Vault Commands: add Add a new service get SERVICE Get credentials for a service list List all saved services delete SERVICE Delete a service clear Erase the entire vault npx namastejs get <service> <keyword> Quick command lookup (sequelize, node, git, etc.) npx namastejs typing-rain 🎮 Play Typing Rain — a fast-paced CLI typing game ────────────────────────────────────────────── Typing Rain Controls: Type word + Enter Destroy falling word Backspace Edit input (disabled after level-up) Space Pause / Resume game Ctrl + C Exit game ────────────────────────────────────────────── Other: --help Show this help message `; console.log(helpMessage); }; module.exports = { help };