jlin27 / 0x-Wordle

Wordle fork with 0x's terminology!

Home Page:https://docs.0x.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

0x Wordle

Learn 0x's terminology through this fork of the popular game Wordle!

Inspiration from Chase Wakerfuss's React Wordle and Apporv Lathey's Wadle.

Refer to the 0x's documentation: here

video


Original Readme:

This is a clone project of the popular word guessing game we all know and love. Made using React, Typescript, and Tailwind.

Build and run

To Run Locally:

Clone the repository and perform the following command line actions:

$> cd 0x-Wordle
$> npm install
$> npm run start

To build/run docker container:

Development

$> docker build -t game:dev .
$> docker run -d -p 3000:3000 game:dev

Open http://localhost:3000 in browser.

Production

$> docker build --target=prod -t game:prod .
$> docker run -d -p 80:80 game:prod

Open http://localhost in browser.

Projects built using this repo

Other languages

Fun themes

Math, Acronyms, Science, Tech, and more

Want to add one to the list? Just make a pull request or let us know via a comment here

FAQ

How can I change the length of a guess?

How can I create a version in another language?

How can I add usage tracking?

This repository includes support for Google Analytics or Plausible Analytics, but, by default, this is disabled.

To enable Google Analytics:

  • Create a Google Analytics 4 property and obtain the measurement ID (of the format G-XXXXXXXXXX)
  • In .env, add REACT_APP_GOOGLE_MEASUREMENT_ID=G-XXXXXXXXXX

Keep in mind that your region might have legislation about obtaining a user's consent before enabling trackers. This is up to downstream repos to implement.

To enable Plausible Analytics:

  • Create a new website with Plausible Analytics with a given domain, e.g. example.app
  • In .env, add REACT_APP_PLAUSIBLE_DOMAIN=example.app

About

Wordle fork with 0x's terminology!

https://docs.0x.org/

License:MIT License


Languages

Language:TypeScript 85.7%Language:CSS 7.3%Language:HTML 5.9%Language:Dockerfile 0.6%Language:JavaScript 0.4%Language:Shell 0.1%