Skip to content

Install & Create Project

Requirements:

  • Node.js 18.14+ (LTS recommended)

Create a new site:

Terminal window
npm create astro@latest my-astro-site
cd my-astro-site
npm install

Start the dev server:

Terminal window
npm run dev

Open http://localhost:4321

Common package managers:

Terminal window
# pnpm
pnpm create astro@latest my-astro-site && cd my-astro-site && pnpm install && pnpm dev
# yarn
yarn create astro my-astro-site && cd my-astro-site && yarn && yarn dev