pinsapod
v1.0.1
Published
A simple random name generator
Downloads
30
Maintainers
Readme
Random Name Generator
A simple random name generator package for Node.js.
Installation
Install the package using npm:
npm install pinsapod
Usage
Import the package and use it to get random names:
import { getRandomName, getRandomColoredName } from 'random-name-generator';
console.log("Random Name: ", getRandomName());
console.log("Random Colored Name: ", getRandomColoredName());
Functions
getRandomName()
: Returns a random name from the list.getRandomColoredName()
: Returns a random name with green color.