A place for me to learn Next.js
Find a file
2025-04-12 21:31:14 +02:00
docs/installation add first things to docs 2025-04-12 21:31:14 +02:00
my-app create new Next.js project 2025-04-12 21:21:15 +02:00
README.md add first things to docs 2025-04-12 21:31:14 +02:00

Next.js

A place for me to learn Next.js

Official Next.js docs: https://nextjs.org/docs/app/getting-started/installation

Next.js is developed & maintained by Vercel

Installation (macOS)

Requirements:

  • Homebrew already installed

Install nodejs

brew install node@22

Check node version

node -v

Check NPM version

npm -v

If you get some errors:

brew cleanup

Then try again

Create new project

npx create-next-app@latest

Afterwards some questions about the project will be asked. You can leave the settings as default.

Run development server

npm run dev

Afterwards the site can be accessed in the browser at http://localhost:3000. New Next.js project

General structure

The whole app is organzied in multiple folders. THe typescript files for the app are stored in src/app.

The code is written in TypeScript.

In package.json are the dependencies saved. The Next.js configuration is saved in next.config.ts.

Each folder in app represents a route of the application, but its only accessable when a page.js or route.js file is contained.

When a folder is named with _ as prefix, it will be ignored by the routing and not accessable from within the application.

Folders in parenthesis (Klammern) while not be show in the route. (https://nextjs.org/docs/app/getting-started/project-structure#organize-routes-without-affecting-the-url-path)

Slugs can be defined by creating a folder in brackets [] like [slug].