1.0.0 • Published 7 years ago

unsullied v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

UNSULLIED

Build Status Dependency status Downloads Always useful

Random unsullied name -and color- generator.

Install

npm install --save unsullied

If you need to use it as a CLI tool:

npm install -g unsullied

Use

const unsullied = require('unsullied');
const name = unsullied();

// 'grey.worm'

With options:

const unsullied = require('unsullied');
const name = unsullied({
  separator: '-'
});

// 'grey-worm'

Available options

  • case: upper || camel,
  • separator: [string] (Default: .),

CLI use:

$> unsullied
// 'grey.worm'
$> unsullied --case=upper
// GREY.WORM
$> unsullied --case=camel
// grey.Worm

Contribute

fork https://github.com/aichholzer/unsullied/

More ideas for adjectives and vermin (See ./lib/data.json) are always welcome.

License

MIT