An interactive CLI tool with angel-themed greetings and blessings
npm install angel-blessing-cliAn interactive CLI tool with angel-themed greetings and blessings.
- ✨ Interactive CLI with beautiful ASCII art welcome screen
- 👋 Angel greetings with personalized messages
- 🌟 Random angel blessings to brighten your day
- 📅 Daily inspirational messages that change based on the date
- 🛍️ Virtual shop displaying magical celestial items
- 📦 Package information display
``bash`
npm install -g angel-blessing-cli
After installation, you can run the CLI by simply typing:
`bash`
angel
`bash`
npm install angel-blessing-cli
Simply run the command to launch the interactive menu:
`bash`
angel
The CLI provides an interactive menu with the following options:
- Receive a blessing
- Get a personalized greeting
- View daily message
- Browse celestial shop
- Package information
- Exit
`javascript
const angel = require('angel-blessing-cli');
// Get a personalized greeting
console.log(angel.greet('Maisy'));
// Output: Hello Maisy, your guardian angel is watching over you!
// Get a random blessing
console.log(angel.bless());
// Output: May light guide your path (or another random blessing)
`
Returns a greeting message from an angel.
- name (string, optional): The name to greet. Defaults to 'friend'.
- Returns: (string) The greeting message.
Generates a random angel blessing.
- Returns: (string) A random blessing.
To publish this package to NPM:
1. Create an NPM account if you don't have one: https://www.npmjs.com/signup
2. Login to NPM from your terminal: npm loginnpm publish --access=public
3. Publish the package:
Note: The package is now using the name 'angel-blessing-cli' which should be unique on npm.
To modify this package:
1. Clone the repository
2. Install dependencies: npm installnpm start`
3. Make your changes
4. Test your changes:
ISC