Skip to content

christianbundy/animal-namer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Animal-Namer

Animal names for everybody!

npm install animal-namer

What?

This module generates alliterative phrases in the following format: {adjective} {animalName}

Examples:

  Overfull Okapi
  Liveborn Lemur
  Decrepit Donkey
  Minuscule Mongoose
  Sculptural Salamander

Why?

I wanted a way to generate simple, fun, ephemeral usernames.

How? (Usage)

All methods return Promises (see the Bluebird docs for more info).

var namer = require('animal-namer');

Get a name

namer.name().then(console.log); // => "Exemplary Elephant"

Other stuff

You can also use the adj or animal methods to get just an animal or adjective.

namer.adj('s').then(console.log); // => "salacious"
namer.animal().then(console.log); // => "Aardvark"

MIT License

Copyright 2014 Duncan Smith

About

Generate alliterative animal usernames

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CoffeeScript 75.2%
  • JavaScript 24.8%