Key Features • How To Use • Credits
To clone and run this application, you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/dcBrian/wordle.git
# Go into the repository
$ cd wordle
# Install dependencies
$ npm install
# Run the app
$ npm run dev
If you want to use your own list of words, you can change the API endpoint by setting the environment variable VITE_PUBLIC_API_PATH
.
By default, it points to https://api-pearl-eight.vercel.app/api/solutions
defined in this repository.
The expected data is:
[
{ id: 1, word: 'ninja' },
{ id: 2, word: 'spade' },
...
]
This project uses the following packages and services: