Skip to content

Cepako/2048-Game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

2048 Game

Description

2048 is a popular puzzle game in which the player must combine identical numbers to create the number 2048. The game is played on a 4x4 board, and each number has a value of 2^n, where n is the row or column number on which the number is located.

Rules

Players can move around the board using the arrow keys or by swiping on a mobile device. With each move, all numbers on the board shift in the same direction. If two numbers of the same value meet during the shift, they are merged into a single number with a value equal to the sum of those two numbers.

Objective

The goal of the game is to achieve the number 2048. If a player cannot combine any numbers, the game ends.

image

Technologies:

  • HTML: Structure and layout of the site.
  • SCSS: Styling and enhanced style sheets.
  • JavaScript: Interactive elements, data manipulation, game logic.

Installation via NPM (Node Package Manager)

To install and run the 2048 Game using NPM, follow these steps:

Prerequisites

  • Ensure that Node.js and NPM are installed on your machine. If not, download and install Node.js from the official website.

Step 1: Clone the Repository

Clone the repository to your local machine by running the following command:

  • git clone [REPOSITORY_URL] Replace [REPOSITORY_URL] with the actual URL of the repository.

Step 2: Navigate to the Project Directory

Change to the project's root directory by executing:

  • cd [PROJECT_DIRECTORY] Replace [PROJECT_DIRECTORY] with the actual directory name where the project was cloned.

Step 3: Install Dependencies

Install the necessary dependencies by executing:

  • npm install This command installs all the packages defined in the package.json file.

Step 4: Start the Application

Run the application by executing:

  • npm start This command will start a development server, and the application should automatically open in your default web browser. If not, you can access the application by navigating to http://localhost:8080/ or the port specified in your terminal.

Step 5: Build for Production (Optional)

To build the application for production, execute:

  • npm run prod This command will create a dist directory with optimized and minified code ready for deployment.

Conclusion

The application should now be running locally on your machine, and you can explore and interact with the 2048 Game.

Note: Make sure to customize the above instructions based on the actual configuration and structure of the 2048 Game in the repository.

Feedback and pull requests are warmly welcomed! 👨‍💻🙋‍♂️