- name: Hangman
- intro: a beginner React project that is easy enough logic-wise, but still includes many complicated problems to solve
- purpose: demonstrate game development ability using React and TypeScript
- time frame: 11/6/2022 - 11/14/2022
- github url: https://github.com/qmeng222/Hangman.git
- create virtual environment & activate/deactivate:
python -m venv .venv source .venv/bin/activate deactivate
- install package create-vite:
npm create vite
- project name: hangman
- select a framework: React
- select a variant: TypeSript
- install dependencies:
npm i
- run the dev script defined in the package. json file:
Local: http://127.0.0.1:5173/
npm run dev