Hello, World
· 1 min read
meta astro self-hosting
Welcome to my blog. I built this as a clean, fast, zero-tracking place to write about code.
Why Astro?
I wanted something that ships zero JavaScript by default, has first-class Markdown support, and builds a static site I can deploy anywhere. Astro does all three.
Code Example
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet("world")); // Hello, world!
What’s Next
I plan to write about self-hosting, developer tooling, and whatever I learn the hard way.