Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 848 Bytes

File metadata and controls

38 lines (25 loc) · 848 Bytes

Birdle (wordle-clone)

This is a Next.js project bootstrapped with create-next-app.

Getting Started

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

JSON Server setup

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.