Walkthrough · Project build
beginner
Ship your first web project
Stack
Pick tools that get out of the way. You can change any of this later.
For a first project the stack matters far less than picking one and stopping. Next.js for the app, Tailwind for styling, Vercel to host it. Add a database only if your idea actually stores something.
bash
npx create-next-app@latest my-projectWhat you should see
A series of questions, then a my-project folder with node_modules installed. Answer yes to TypeScript, yes to Tailwind, yes to App Router.bash
cd my-project
npm run devWhat you should see
Local: http://localhost:3000. Open it and you should see the Next.js starter page.- Created the project with create-next-app
- Seen the starter page at localhost:3000
- Changed some text in app/page.tsx and watched it update
- Sign in to tick these off and pick up where you left them.
Tools used in this build
Everything this walkthrough reaches for, with the directory entry for each.