https://github.com/iimpaq/wordle-backend
The backend for my personal spin of the wordle game.
https://github.com/iimpaq/wordle-backend
backend javascript wordle
Last synced: over 1 year ago
JSON representation
The backend for my personal spin of the wordle game.
- Host: GitHub
- URL: https://github.com/iimpaq/wordle-backend
- Owner: IImpaq
- License: mit
- Created: 2022-07-25T11:24:46.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-18T14:21:18.000Z (almost 3 years ago)
- Last Synced: 2025-01-22T15:14:06.379Z (over 1 year ago)
- Topics: backend, javascript, wordle
- Language: JavaScript
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wordle Backend
This project is a replication of the popular Wordle game. It was made to improve
my web development skills and further extend my toolset after completing the
[FullStackOpen course](https://github.com/IImpaq/fullstackopen).
## Developing
To work on the project, start a development server:
```bash
npm run dev
```
## Building
To create a production version of your app:
```bash
npm run build
```
## Frontend
You might want to check out the corresponding
[frontend application](https://github.com/IImpaq/wordle-frontend)