An open API service indexing awesome lists of open source software.

https://github.com/deftio/wordgen

Generate random words by combining 2-5 letter scrabble words.
https://github.com/deftio/wordgen

Last synced: 4 months ago
JSON representation

Generate random words by combining 2-5 letter scrabble words.

Awesome Lists containing this project

README

          

# Word Gen

A simple html page which generates words by smashing 2-5 letter scrabble words together.

BSD-2 license

## Usage
Clone via git
Deploy as a single page website or file:://open should work
Using URL parameters you can control the word generation.

## Examples (hosted on github pages)

#### Generate words using 2-letter, 3-letter, and 5-letter lists:

[https://deftio.github.io/wordgen/index.html?use=2,3,5](https://deftio.github.io/wordgen/index.html?use=2,3,5)

#### Generate words by combining 3 random words:

[https://deftio.github.io/wordgen/index.html?wpw=3](https://deftio.github.io/wordgen/index.html?wpw=3)

#### Combining 3 words from the lists of 2 and 3 letter words:

[https://deftio.github.io/wordgen/index.html?wpw=3&use=2,3](https://deftio.github.io/wordgen/index.html?wpw=3&use=2,3)

## Building etc
There is no building or bundler - this is a static HTML project written with [bitwrench.js](https://github.com/deftio/bitwrench) and [Bootstrap](https://www.getbootstrap.com)

### Simple use with python3

Make sure you have python3 installed.

Then run this command in the wordgen directory:
```
python3 -m http.server 8080
```

now open your browser:

localhost:8080

to see the web page.

This also works in the AWS cloud9 IDE as a simple demo.