Build a Blog Tutorial: a step-by-step guide to building a basic blog with Astro # Build your first Astro Blog > Learn the basics of Astro with a project-based tutorial. All the background knowledge you need to get started! In this tutorial, you’ll learn Astro’s key features by building a fully-functioning blog, from zero to full launch! 🚀 Along the way, you’ll: * Set up your development environment * Create pages and blog posts for your website * Build with Astro components * Query and work with local files * Add interactivity to your site * Deploy your site to the web Want a preview of what you’re going to build? You can view the final project on [GitHub](https://github.com/withastro/blog-tutorial-demo) or open a working version in an online coding environment such as [IDX](https://idx.google.com/import?url=https:%2F%2Fgithub.com%2Fwithastro%2Fblog-tutorial-demo%2F) or [StackBlitz](https://stackblitz.com/github/withastro/blog-tutorial-demo/tree/complete?file=src%2Fpages%2Findex.astro). ## Checklist [Section titled Checklist](#checklist) * Looks great! I’m ready to get started! # About this Tutorial > How to get started with the "Build your first Astro blog" tutorial. ## What do I need to know to get started? [Section titled What do I need to know to get started?](#what-do-i-need-to-know-to-get-started) If you have some basic familiarity with **HTML**, **Markdown**, **CSS**, and a little **JavaScript**, then you’re totally good to go! You’ll be able to complete the entire tutorial just by following the instructions. Astro is for everyone! 🧑‍🚀 👩‍🚀 👨‍🚀 You will also need a [GitHub](https://github.com) (or similar) account for publishing your project to the web. ## Checklist for moving on [Section titled Checklist for moving on](#checklist-for-moving-on) * I’m ready to build this thing! # Check in: Unit 1 - Setup > Tutorial: Build your first Astro blog — Prepare your development environment, and create and deploy your first Astro site Now that you know what you’re going to build, it’s time to set up all the tools you’ll need! This unit shows you how to set up your development environment and deploy to Netlify. Skip ahead to [Unit 2](/en/tutorial/2-pages/) if you are already comfortable with your environment and workflow. ## Where are you going? [Section titled Where are you going?](#where-are-you-going) In this unit, you will **create a new project** that is **stored online in GitHub** and **connected to Netlify**. As you write code, you will periodically commit your changes to GitHub. Netlify will use the files in your GitHub repository to build your website, and then publish it on the internet at a unique address where anyone can view it. Every time you commit a change to GitHub, a notification will be sent to Netlify. Then, Netlify will automatically rebuild and republish your live site to reflect those changes. ## Checklist [Section titled Checklist](#checklist) * I’m ready to prepare a development environment for an Astro project! # Prepare your dev environment > Tutorial: Build your first Astro blog — Install the local tools that you’ll need to complete the tutorial Get ready to… * Install any tools that you will use to build your Astro website ## Get the dev tools you need [Section titled Get the dev tools you need](#get-the-dev-tools-you-need) ### Terminal [Section titled Terminal](#terminal) You will use a **command line (terminal)** to create your Astro project and to run key commands to build, develop, and test your site. You can access the command line through a local terminal program for your operating system. Common applications include **Terminal** (MacOS/Linux), **Command Prompt** (Windows), and **Termux** (Android). One of these will probably already be on your machine. ### Node.js [Section titled Node.js](#nodejs) For Astro to run on your system, you will also need to have [**Node.js**](https://nodejs.org/en/) installed, version `v18.17.1` or `v20.3.0` or later. (`v19` is not supported.) To check to see whether you already have a compatible version installed, run the following command in your terminal: ```sh node -v // Example output v18.17.1 ``` If the command returns a version number higher than `v18.17.1` or `v20.3.0` (excluding any `v19`), you’re good to go! If the command returns an error message like `Command 'node' not found`, or a version number lower than the required, then you need to [install a compatible Node.js version](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm). ### Code Editor [Section titled Code Editor](#code-editor) Additionally, you will need to download and install a **code editor** to write your code. 1. [Download and install VS Code](https://code.visualstudio.com/#alt-downloads) or another code editor of your choice. ### Test your knowledge [Section titled Test your knowledge](#test-your-knowledge) Which of the following is… 1. A code editor, for making changes to your files and their content? 1. web browser 2. Terminal 3. VS Code Submit 2. An online version control provider for your repository? 1. GitHub 2. Terminal 3. VS Code Submit 3. An application for running commands? 1. GitHub 2. Terminal 3. web browser Submit ## Checklist for moving on [Section titled Checklist for moving on](#checklist-for-moving-on) * I can access the command line in a terminal. * I have Node.js installed. * I have a code editor like VS Code. ### Resources [Section titled Resources](#resources) * [FreeCodeCamp.org](https://freecodecamp.org) external — a free educational site with full courses or quick refreshers in HTML, CSS, JS, and more. # Create your first Astro project > Tutorial: Build your first Astro blog — Create a new project for the Astro tutorial and get ready to code Get ready to… * Run the `create astro` setup wizard to create a new Astro project * Start the Astro server in development (dev) mode * View a live preview of your website in your browser ## Launch the Astro setup wizard [Section titled Launch the Astro setup wizard](#launch-the-astro-setup-wizard) The preferred way to create a new Astro site is through our `create astro` setup wizard. 1. In the command line of your terminal, run the following command using your preferred package manager: * npm ```shell # create a new project with npm npm create astro@latest -- --template minimal ``` * pnpm ```shell # create a new project with pnpm pnpm create astro@latest --template minimal ``` * Yarn ```shell # create a new project with yarn yarn create astro --template minimal ``` 2. Confirm `y` to install `create-astro` 3. When the prompt asks you where to create the project, type in the name of a folder to create a new directory for your project, e.g. `./tutorial` 4. When the prompt asks you whether or not to install dependencies, type or select `y`. 5. When the prompt asks you whether or not to initialize a new git repository, type or select `y`. When the install wizard is complete, you no longer need this terminal. You can now open VS Code to continue. ## Open your project in VS Code [Section titled Open your project in VS Code](#open-your-project-in-vs-code) 6. Open VS Code. You will be prompted to open a folder. Choose the folder that you created during the setup wizard. 7. If this is your first time opening an Astro project, you should see a notification asking if you would like to install recommended extensions. Click to see the recommended extensions, and choose the [Astro language support extension](https://marketplace.visualstudio.com/items?itemName=astro-build.astro-vscode). This will provide syntax highlighting and autocompletions for your Astro code. 8. Make sure the terminal is visible and that you can see the command prompt, such as: ```sh user@machine:~/tutorial$ ``` You can now use the terminal built right into this window, instead of your computer’s Terminal app, for the rest of this tutorial. ## Run Astro in dev mode [Section titled Run Astro in dev mode](#run-astro-in-dev-mode) In order to preview your project files *as a website* while you work, you will need Astro to be running in development (dev) mode. ### Start the dev server [Section titled Start the dev server](#start-the-dev-server) 9. Run the command to start the Astro dev server by typing into VS Code’s terminal: * npm ```shell npm run dev ``` * pnpm ```shell pnpm run dev ``` * Yarn ```shell yarn run dev ``` Now you should see confirmation in the terminal that Astro is running in dev mode. 🚀 ## View a preview of your website [Section titled View a preview of your website](#view-a-preview-of-your-website) Your project files contain all the code necessary to display an Astro website, but the browser is responsible for displaying your code as web pages. 10. Click on the `localhost` link in your terminal window to see a live preview of your new Astro website! (Astro uses `http://localhost:4321` by default if port `4321` is available.) Here’s what the Astro “Empty Project” starter website should look like in the browser preview: ![A blank white page with the word Astro at the top.](/tutorial/minimal.png) ## Checklist [Section titled Checklist](#checklist) * I can create a new Astro project. * I can start the Astro dev server. ### Resources [Section titled Resources](#resources) * [Getting Started with Visual Studio Code](https://code.visualstudio.com/docs/introvideos/basics) external — a video tutorial for installing, setting up and working with VS Code # Write your first line of Astro > Tutorial: Build your first Astro blog — Make your first edits to your tutorial project's home page Get ready to… * Make your first edit to your new website ## Edit your home page [Section titled Edit your home page](#edit-your-home-page) 1. In your code editor, navigate in the Explorer file pane to `src/pages/index.astro` and click on it to open the file’s contents in an editable tab. The contents of your `index.astro` file should look like this: src/pages/index.astro ```astro --- --- Astro

Astro

``` 2. Edit the content of your page ``. Type in the editor to change the heading text on your page and save the change. src/pages/index.astro ```astro

Astro

My Astro Site

``` 3. Check the browser preview and you should see your page content updated to the new text. Congratulations! You are now an Astro developer! The rest of this unit will set you up for success with version control and a published website you can show off. ## Checklist [Section titled Checklist](#checklist) * I can make changes and see them in the browser. * I am an Astro developer! # Store your repository online > Tutorial: Build your first Astro blog — Create a GitHub repo for your tutorial project Get ready to… * Put your project repository online This tutorial will use GitHub to store our repository and connect to a web host. You are welcome to use the online git provider of your choice. ## Create a repository on GitHub [Section titled Create a repository on GitHub](#create-a-repository-on-github) Although there are a few ways to get your local code stored in GitHub, this tutorial will guide you through a method that does not require using git in the command line. 1. Log in to GitHub.com in a browser and click the `+` in the upper right of the screen to make a new repository. 2. Choose a name for your repository. This does not have to be the same name as your project folder. 3. You will be presented with options, but you do not need to change any of the defaults. Scroll down and click the button to `Create Repository`. 4. You will be presented with various setup next steps, but you won’t need to use any of them. Make a note of the URL of your repository. You can now exit this page without doing anything. ## Commit your local code to GitHub [Section titled Commit your local code to GitHub](#commit-your-local-code-to-github) In the last section, you made a change to your page’s content. This means that your project files have changed, and VS Code should show a number on top of the “Source” menu icon. This source tab is where you will regularly go to update your files on GitHub. 1. Click the Source Control tab in your VS Code to see a list of files that have changed. If you see a message that you need to install `git`, follow the instructions provided, then reload VS Code. 2. Click the `•••` “3 dots” menu above the commit message and choose `Remote` > `Add Remote`. 3. Select `Add remote from GitHub`. If necessary, follow any authentication steps then return to VS Code and repeat this action. 4. You should see a list of all your repositories on GitHub. Choose the one you created for this project. If you don’t see your project, paste in its GitHub URL directly. You may also be asked to give this repository a local name. You can select any name you like. 5. At the top of the menu pane, there will be a place to enter a **commit message** (description of your file changes). Type in `initial commit` and press the `Commit` button to commit these changes. 6. You may see a message telling you that you have no “staged” commits, and asking you if you want to stage them. Click `Always` and continue. 7. Lastly, the list of changed files should be replaced with a `Publish` button. Click this to send your committed changes to GitHub. ### See your project on GitHub [Section titled See your project on GitHub](#see-your-project-on-github) To verify that your project is successfully stored on GitHub, visit GitHub.com and look under your account for a list of your repositories. Choose the new one you created, and verify that it contains your Astro project files. ## Checklist [Section titled Checklist](#checklist) * I have stored my project on GitHub. ### Resources [Section titled Resources](#resources) * [Using Git Source control in VS Code](https://code.visualstudio.com/docs/sourcecontrol/overview#_git-support) external # Deploy your site to the web > Tutorial: Build your first Astro blog — Connect your tutorial project's GitHub repo to Netlify and deploy to the web Get ready to… * Add your GitHub repository as a new Netlify app * Deploy your Astro site to the web Here, you will connect your GitHub repository to Netlify. Netlify will use that project to build and deploy your site live on the web every time you commit a change to your code. ## Create a new Netlify site [Section titled Create a new Netlify site](#create-a-new-netlify-site) 1. Create a free account at [Netlify](https://netlify.com) if you do not already have one. Make a note of your username. You will view your dashboard and any sites you create at `https://app.netlify.com/teams/username` 2. Click `Add new site` > `Import an existing project`. You will be asked to connect to a Git provider. Choose GitHub and follow the steps onscreen to authenticate your GitHub account. Then, choose your Astro project’s GitHub repository from the list provided. 3. At the final step, Netlify will show you your app’s site settings. The defaults should be correct for your Astro project, so you can scroll down and click `Deploy site`. Congratulations, you have an Astro website! ## Change your project name [Section titled Change your project name](#change-your-project-name) On your site’s overview page in Netlify, you will see your randomly-generated project name, and your website URL of the form `https://project-name-123456.netlify.app`. You can change your project name to something more memorable, and this will automatically update your URL. ## Visit your new website [Section titled Visit your new website](#visit-your-new-website) Click on the URL in your site settings, or type it into a browser window to view your new website. ### Test your knowledge [Section titled Test your knowledge](#test-your-knowledge) You want to update the home page of your existing website. What steps do you take? 1. I open a terminal, run `create astro`, and then visit my Netlify URL. 2. I change a setting in my Netlify app, then start a new Astro project on astro.new. 3. I make an edit to `index.astro`. I commit and push my changes to GitHub. Netlify will handle the rest! Submit ## Checklist [Section titled Checklist](#checklist) * I can view my updated website online. * I’m ready to get back to coding! ### Resources [Section titled Resources](#resources) * [A step-by-step guide to deploying on Netlify](https://www.netlify.com/blog/2016/09/29/a-step-by-step-guide-deploying-on-netlify/) external # Check in: Unit 2 - Pages > Tutorial: Build your first Astro blog — Create, style, and link to pages posts on your site Now that you have a working site on the web, it’s time to add pages and posts! ## Looking ahead [Section titled Looking ahead](#looking-ahead) In this unit, you will: * Create your first Astro pages with the `.astro` syntax * Add blog posts with Markdown (`.md`) files * Style an individual page with `` tags, you can style items on your page. Adding **attributes** and **directives** to these tags gives you even more ways to style. 1. Copy the following code and paste it into `src/pages/about.astro`: src/pages/about.astro ```astro {pageTitle} ``` Check all three pages in your browser preview. * Which color is the page title of: * Your Home page? \[ ] black * Your About page? \[ ] purple * Your Blog page? \[ ] black * The page with the biggest title text is? \[ ] Your About page 2. Add the class name `skill` to the generated `
  • ` elements on your About page, so you can style them. Your code should now look like this: src/pages/about.astro ```astro

    My skills are:

    ``` 3. Add the following code to your existing style tag: src/pages/about.astro ```astro ``` 4. Visit your About page in your browser again, and verify, through visual inspection or dev tools, that each item in your list of skills is now green and bold. ## Use your first CSS variable [Section titled Use your first CSS variable](#use-your-first-css-variable) The Astro ` ``` 3. Check your About page in your browser preview. You should see that the skills are now navy blue, as set by the `skillColor` variable passed to the `define:vars` directive. ## Try it yourself - Define CSS variables [Section titled Try it yourself - Define CSS variables](#try-it-yourself---define-css-variables) 1. Update the ` ``` 2. Add any missing variable definitions in your frontmatter script so that your new ` ``` 2. Add a ` ``` 3. Check your browser preview again and confirm that each page shows an updated footer. ### Test Yourself [Section titled Test Yourself](#test-yourself) 1. What line of code do you need to write in an Astro component’s frontmatter to receive values of `title`, `author`, and `date` as props? 1. `const { title, author, date } = Astro.props;` 2. `import BlogPost from '../components/BlogPost.astro'` 3. `` Submit 2. How do you **pass values as props** to an Astro component? 1. `const { title, author, date } = Astro.props;` 2. `import BlogPost from '../components/BlogPost.astro'` 3. `` Submit ## Checklist [Section titled Checklist](#checklist) * I can create new `.astro` components in `src/components/` * I can import and use Astro components inside other Astro components. * I can pass props to an Astro component. ### Resources [Section titled Resources](#resources) * [Component Props in Astro](/en/basics/astro-components/#component-props) # Build it yourself - Header > Tutorial: Build your first Astro blog — Use everything you've learned so far to build a header with responsive navigation Since your site will be viewed on different devices, it’s time to create a page navigation that can respond to multiple screen sizes! Get ready to… * Create a Header for your site that contains the Navigation component * Make the Navigation component responsive ## Try it yourself - Build a new Header component [Section titled Try it yourself - Build a new Header component](#try-it-yourself---build-a-new-header-component) 1. Create a new Header component. Import and use your existing `Navigation.astro` component inside a `