Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmsanford/paudle
Wordle in Rust
https://github.com/pmsanford/paudle
rust webassembly wordle yew
Last synced: 3 months ago
JSON representation
Wordle in Rust
- Host: GitHub
- URL: https://github.com/pmsanford/paudle
- Owner: pmsanford
- License: agpl-3.0
- Created: 2022-01-16T20:28:29.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-11T02:03:44.000Z (about 2 years ago)
- Last Synced: 2024-04-19T19:01:59.806Z (7 months ago)
- Topics: rust, webassembly, wordle, yew
- Language: Rust
- Homepage: https://pmsanford.github.io/paudle/
- Size: 6.56 MB
- Stars: 41
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-yew - Paudle - A reimplementation of the excellent word game Wordle by Josh Wardle. (Projects)
README
Paudle
======A reimplementation of the excellent word game [Wordle](https://www.powerlanguage.co.uk/wordle/) by [Josh Wardle](https://twitter.com/powerlanguish). This version was created using [Yew](https://yew.rs/) and [Rust](https://www.rust-lang.org/). I cribbed the colors and layout (and of course the game logic) from Wordle, but the implementation is all original.
Running
-------
First, [install the webassembly target and trunk](https://yew.rs/docs/getting-started/introduction). Clone the repo, run `yarn install`, run `trunk serve`, and navigate to http://localhost:8080 using your browser.Todo
----Still missing:
- Hard mode
- AnimationsNeeds cleanup:
- Clones everywhere on prop passing
- Lots of prop drilling
- Scoreboard spaghetti[The word corpus](src/awords.txt) is taken from [this repo](https://github.com/oldfartdeveloper/wordle-generate-word-list) under the MIT license.
Special Thanks
--------------
To @Cadiac, author of [Sanuli](https://github.com/Cadiac/sanuli) (a Finnish Wordle), for showing me how to properly attach a keyboard listener.