# Installation

### [System requirements](https://nextjs.org/docs/app/getting-started/installation#system-requirements) <a href="#system-requirements" id="system-requirements"></a>

Before you begin, make sure your system meets the following requirements:

* [Node.js 18.18](https://nodejs.org/) or later.
* macOS, Windows (including WSL), or Linux.

The project is built by Next.js, so development and construction will follow CRA guidelines.&#x20;

Please check more carefully here -<https://nextjs.org/docs/app/getting-started/installation>

### 1. [Manual installation](https://nextjs.org/docs/app/getting-started/installation#manual-installation) <a href="#manual-installation" id="manual-installation"></a>

Unzip the download and navigate to the Bitpan folder. Open a terminal on your computer, then drag the Bitpan folder into that terminal window to start working on the project.&#x20;

Install the required packages:

`Terminal`

```
npm install
```

Then, add the following scripts to your `package.json` file:

`package.json`

```
{
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  }
}
```

These scripts refer to the different stages of developing an application:

* `next dev`: Starts the development server.
* `next build`: Builds the application for production.
* `next start`: Starts the production server.
* `next lint`: Runs ESLint.

### 2. [Run the development server](https://nextjs.org/docs/app/getting-started/installation#run-the-development-server) <a href="#run-the-development-server" id="run-the-development-server"></a>

1. Run `npm run dev` to start the development server.
2. Visit `http://localhost:3000` to view your application.
3. Edit the`app/page.tsx` file and save it to see the updated result in your browser.
