Try to play 2048 Game: click here
This project is a recreation of the popular game 2048.
It showcases my skills in JS.
The entire game logic is written using the functional programming method.
To simplify testing of lose/win cases, hotkeys are provided:
e
- for lose game case
w
- for win game case
⚡️ Simple and intuitive game interface
⚡️ Functional programming
⚡️ Pure JS no frameworks
⚡️ Simple final cases tests
⚡️ Valid JS
- Clone the repository to your local machine.
- Navigate to the project directory in your terminal.
- Install the dependencies by running
npm install
oryarn install
. - Start the project by running
npm start
oryarn start
. - Open your browser and go to
http://localhost:8080
to view the project.