38 lines
661 B
Markdown
38 lines
661 B
Markdown
---
|
|
title: Building a Blog with Astro
|
|
slug: building-blog-with-astro
|
|
description: Learn why Astro is the perfect choice for building fast, content-focused blogs.
|
|
category: tech
|
|
post_type: article
|
|
pinned: false
|
|
published: true
|
|
tags:
|
|
- astro
|
|
- web-dev
|
|
- static-site
|
|
---
|
|
|
|
# Building a Blog with Astro
|
|
|
|
Astro is a modern static site generator that delivers lightning-fast performance.
|
|
|
|
## Why Astro?
|
|
|
|
- Zero JavaScript by default
|
|
- Island Architecture
|
|
- Framework Agnostic
|
|
- Great DX
|
|
|
|
## Getting Started
|
|
|
|
```bash
|
|
npm create astro@latest
|
|
cd my-astro-project
|
|
npm install
|
|
npm run dev
|
|
```
|
|
|
|
## Conclusion
|
|
|
|
Astro is perfect for content-focused websites like blogs.
|