https://github.com/raineorshine/cute-animals
Generate random adj-animal combinations with kid-friendly names.
https://github.com/raineorshine/cute-animals
Last synced: 5 months ago
JSON representation
Generate random adj-animal combinations with kid-friendly names.
- Host: GitHub
- URL: https://github.com/raineorshine/cute-animals
- Owner: raineorshine
- License: isc
- Created: 2020-12-14T00:07:43.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-13T19:47:55.000Z (almost 5 years ago)
- Last Synced: 2025-06-26T19:54:13.628Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 418 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-template.md
- License: LICENSE.md
Awesome Lists containing this project
README
# cute-animals
[](https://npmjs.org/package/cute-animals)
Generates random cute adj-animal combinations that are kid-friendly and not too weird.
## Install
```sh
npm install --save cute-animals
```
## Usage
### Module
```js
const animal = require('cute-animals')
```
Generate one random animal:
```js
animal()
/*
yak
water boa
ocelot
butterfly
giant panda
*/
```
Generate one random adjective:
```js
animal('adj')
/*
blissful
goofy
sweet
tumbly
pretty
*/
```
Generate two adjectives and an animal:
```js
animal('adj adj animal')
/*
warmhearted tranquil tarantula
yummmy divine mackerel
little exquisite moose
elated tender blue bird
heavenly optimistic starfish
*/
```
### CLI
```sh
$ cute-animals adj adj animal
elated sincere sloth
```
## Corpus
### Adjectives
```
<%=adjectives.join('\n')%>
```
### Animals
```
<%=animals.join('\n')%>
```