Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 811 Bytes

File metadata and controls

53 lines (39 loc) · 811 Bytes

Next.js Project

Getting Started

Prerequisites

  • Node.js (version 14.6.0 or higher)
  • npm or yarn

Installation

  1. Clone the repository:
git clone <repository-url>
cd <project-name>
  1. Install dependencies:
npm install
# or
yarn install

Running the Development Server

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Building for Production

npm run build
npm start
# or
yarn build
yarn start

Scripts

  • npm run dev - Start development server
  • npm run build - Build for production
  • npm start - Start production server
  • npm run lint - Run ESLint

Learn More

To learn more about Next.js, check out the Next.js Documentation.