Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/falcucci/wordle
A word guessing game.
https://github.com/falcucci/wordle
Last synced: 3 days ago
JSON representation
A word guessing game.
- Host: GitHub
- URL: https://github.com/falcucci/wordle
- Owner: falcucci
- Created: 2022-04-12T21:50:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-22T08:24:15.000Z (over 2 years ago)
- Last Synced: 2024-10-30T13:37:42.173Z (11 days ago)
- Language: TypeScript
- Homepage:
- Size: 8.6 MB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
🌈 WORDLE 🌈
A word guessing game where players have six attempts to guess a five letter word.
## How it works?
The feedback for each guess is given in the form of colored tiles to indicate if letters match the correct position.This [Replit](https://replit.com/@alexfalcucci/wordle) is available if you want to preview and play the game without any pre setup.
## Briefing as .gif
Here we have a brief about what it would be suppose to look:
![wordle2](https://user-images.githubusercontent.com/33763843/163688245-cb3b6a68-cf61-419a-8b81-60fa5ce3b91c.gif)
## Usage
This game was't published at `npm` yet so run it locally to see how it works.
install typescript globally:
```bash
$ npm i -g typescript
```install all required packages:
```bash
$ npm i
```run it using `npx` as follows:
```bash
$ npx ts-node src/main.ts
```