TIDE
Frameworks

Next.js

How to install and run Next.js in TIDE

Next.js

Next.js is a popular React framework for building full-stack web applications.

Prerequisites

Ensure you have Node.js and NPM installed. Check out the Node.js installation guide for instructions.

Installation

You can create a new Next.js app natively within TIDE's terminal using the following command:

npx create-next-app@latest my-app

Follow the interactive prompts to configure your project (TypeScript, ESLint, Tailwind CSS, App Router, etc.).

Running the Development Server

Navigate to the project directory:

cd my-app

Start the development server:

npm run dev

Next.js will typically start on http://localhost:3000. TIDE will allow you to view the server output and interact with the application.

On this page