This is a Next.js project bootstrapped with create-next-app
.
Warning I personally use pnpm as my default package manager.
However, you still have the option to use either npm or yarn if you prefer.
First, clone the repository:
git clone https://github.com/iglooe/wordle-clone.git
Then, install dependencies:
pnpm install
The frontend relies on a JSON server to pull words from. To run the server do the following:
json-server ./data/db.json --port 3001
Finally, run the development server:
pnpm run dev
Open http://localhost:3000 with your browser to see the result.