dog-names alternatives and similar modules
Based on the "Weird" category.
Alternatively, view dog-names alternatives based on common mentions on social networks and blogs.
CodeRabbit: AI Code Reviews for Developers
Do you think we are missing an alternative of dog-names or a related project?
README
dog-names
Get popular dog names
[](kira.jpg)
The name lists are just JSON files and can be used anywhere.
I'm not accepting PRs for additional names.
Install
$ npm install dog-names
Usage
const dogNames = require('dog-names');
dogNames.femaleRandom();
//=> 'Lucy'
API
.female
Type: string[]
Top 100 female dog names sorted by popularity.
.male
Type: string[]
Top 100 male dog names sorted by popularity.
.all
Type: string[]
Top 200 dog names sorted by popularity.
.femaleRandom()
Type: Function
Random female dog name.
.maleRandom()
Type: Function
Random male dog name.
.allRandom()
Type: Function
Random dog name.
CLI
$ npm install --global dog-names
$ dog-names --help
Get popular dog names
Usage
$ dog-names
Options
--all Get all the names instead of a random name
--type Type of name [Default: all] [Values: female, male, all]
Examples
$ dog-names
Lucy
$ dog-names --all --type male
Max
Buddy
…
Related
- cat-names - Get popular cat names
- pokemon - Get Pokémon names
- superb - Get superb like words
- superheroes - Get superhero names
- supervillains - Get supervillain names
- yes-no-words - Get yes/no like words
License
MIT © Sindre Sorhus
*Note that all licence references and agreements mentioned in the dog-names README section above
are relevant to that project's source code only.