1.0.4 • Published 4 years ago
node-wordle-cli v1.0.4
node-wordle-cli
A version of the game Wordle in your terminal.
Game
Players have six attempts to guess a five-letter word, everytime a guess is entered, it will be printed to the terminal with the color of the letters changing, indicating when letters match or occupy the correct position.
A collection of all letters of the (english) alphabet will be shown after each guess to help players keep track of the status of letters.

How to run
The quicket way to play is to download it with npx:
npx node-wordle-clior
install globally running:
npm i -g node-wordle-cliand then run with:
node-wordle-cliRun Locally
Clone the project
git clone git@github.com:juanpichvrdo/node-wordle-cli.gitGo to the project directory
cd node-wordle-cliInstall dependencies
npm installRun and watch file changes with nodemon:
npm run devBuild:
npm run buildBuild and then run the builded files:
npm run startTodo
- Add tests
Credits
Wordle is a game created by Josh Wardle (@powerlanguish).