0.1.0 • Published 5 years ago

@iamso/nonsense v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
5 years ago

nonsense

Heavily inspired by Jeff Holman's nonsense generator.

CLI/Package to create nonsense text, random words, sentences and paragraphs.

Install

npm install -g @iamso/nonsense

Usage

Programmatically

const Nonsense = require('@iamso/nonsense');

const nonsense = new Nonsense();

// get random word(s)
const words = nonsense.words(1);

// get random sentence(s)
const sentences = nonsense.sentences(1);

// get random paragraph(s)
const paragraphs = nonsense.paragraphs(1);

// get random paragraph(s) as HTML
const paragraphsHtml = nonsense.paragraphs(1, true);

Command Line

# get random word(s)
nonsense words [length]

# get random sentence(s)
nonsense sentences [length]

# get random paragraph(s)
nonsense paragraphs [length]

# get random paragraph(s) as HTML
nonsense paragraphs [length] -H

Note: The output of all these commands can automatically be copied to the clipboard by adding the option -c at the end.

License

ISC License