Welcome to my personal blog

Create NextJS app

Published on
1 min read
← Back to the blog
Authors

How to Create a Next.js App

The easiest way to create a new Next.js application is by using the create-next-app CLI tool. Follow these steps:

  • First, install the create-next-app package globally (if you haven’t already):
Terminal
npm install -g create-next-app
  • Initialize a new Next.js application by calling the tool and supplying a name for your project:
Terminal
npx create-next-app my-next-app

Replace my-next-app with your desired project name. This command will set up a new Next.js project with everything configured for you.

  • Run your app in development mode:
Terminal
npm run dev

Your Next.js app will be accessible at http://localhost:3000.

Comments