Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nshafer/gradle
Wordle Grade
https://github.com/nshafer/gradle
Last synced: 10 days ago
JSON representation
Wordle Grade
- Host: GitHub
- URL: https://github.com/nshafer/gradle
- Owner: nshafer
- Created: 2022-03-27T21:29:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-16T21:41:00.000Z (about 1 year ago)
- Last Synced: 2024-10-30T06:24:58.360Z (about 2 months ago)
- Language: TypeScript
- Size: 1.17 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gradle
Grade your wordle games. Analyze game play. Save history. Share easily.
## Features
- Select any date to enter your wordle guesses for that day, or enter a word manually. Defaults to today.
- Each guess will be graded using information theory, giving you objective insight into exactly how each letter contributed to solving the puzzle.
- A final grade will be tallied by averaging all of the individual grades.
- Share your puzzle and grade easily, including a unique link to your specific guesses.
- Include spoiler tags for Discord, Reddit, or Markdown-based forums.
- Supports old and new reddit formatting.
- Your puzzles are saved every day (on your device), and can be viewed in the History page.
- Dark mode and Color-blind mode.
- Auto detects hard-mode.
- Desktop and mobile friendly.
- Can be installed as a Progressive Web App (PWA) to your Homescreen. Works offline.
- Fast solver (usually 1-2 milliseconds).
- Open source.## Motivation
This is a simple project to help me learn some new tech... TypeScript, Vite, Vue 3 (and declaritive syntax), PWAs, etc.
Use at your own risk.## Project Setup
```sh
npm install
```### Compile and Hot-Reload for Development
```sh
make dev
```### Type-Check and lint
```sh
make check
```### Compile and Minify for Production
```sh
make build
```### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
make test
```