namaste-karo
Version:
A simple Node.js package to greet with Namaste.
36 lines (23 loc) • 656 B
Markdown
A simple Node.js package to greet with "Namaste".
```bash
npm install namaste-karo
```
```javascript
const { bolo, boloWithName } = require('namaste-karo');
// Greet with a simple "Namaste"
bolo(); // Output: Namaste
// Greet with a personalized message
boloWithName('Ansh'); // Output: Namaste, Ansh
```
Logs "Namaste" to the console.
Logs a personalized greeting to the console.
- **Parameters**:
- `name` (string): The name to include in the greeting.
This project is licensed under the MIT License.