An 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
npm install -g maisy-angel-blessings
After installation, you can run the CLI by simply typing:
angel
npm install maisy-angel-blessings
Simply run the command to launch the interactive menu:
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
const angel = require('maisy-angel-blessings');
// 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:
- Create an NPM account if you don't have one: https://www.npmjs.com/signup
- Login to NPM from your terminal:
npm login
- Publish the package:
npm publish --access=public
Note: The package is now using the name 'maisy-angel-blessings' which should be unique on npm.
To modify this package:
- Clone the repository
- Install dependencies:
npm install
- Make your changes
- Test your changes:
npm start
ISC