FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Astro Has a Free Web Framework — Ship Zero JavaScript by Default
How-ToWeb Development

Astro Has a Free Web Framework — Ship Zero JavaScript by Default

via Dev.to JavaScriptAlex Spinov3h ago

A blog built with Next.js shipped 200KB of JavaScript to the browser. For static content that never changes. The Lighthouse score was 65. Astro is a free web framework that ships zero JavaScript by default. Static HTML first, hydrate only the interactive parts. Perfect Lighthouse scores. What Astro Offers for Free Zero JS by Default - Static HTML, no client-side JavaScript unless needed Islands Architecture - Hydrate only interactive components Any UI Framework - React, Vue, Svelte, Solid in the same project Content Collections - Type-safe Markdown/MDX content SSR - Server-side rendering when needed View Transitions - Smooth page transitions built in Image Optimization - Built-in image component Adapters - Deploy to Vercel, Netlify, Cloudflare, Node Quick Start npm create astro@latest --- const posts = await getCollection('blog') --- <html> <body> <h1>My Blog</h1> {posts.map(post => <a href={post.slug}>{post.data.title}</a>)} </body> </html> GitHub: withastro/astro - 48K+ stars Need to

Continue reading on Dev.to JavaScript

Opens in a new tab

Read Full Article
0 views

Related Articles

Rob Pike’s 5 Rules: The Secret to Building Systems That Actually Survive Production
How-To

Rob Pike’s 5 Rules: The Secret to Building Systems That Actually Survive Production

Medium Programming • 57m ago

Bipolar and Sleep Deprivation: What Actually Happens
How-To

Bipolar and Sleep Deprivation: What Actually Happens

Dev.to • 1h ago

Learn how to develop like a pro for free
How-To

Learn how to develop like a pro for free

Medium Programming • 2h ago

I didn't have to drill these renter-friendly smart lights into my wall - and I love them for it
How-To

I didn't have to drill these renter-friendly smart lights into my wall - and I love them for it

ZDNet • 3h ago

How to Create and Use Checkboxes in Figma
How-To

How to Create and Use Checkboxes in Figma

FreeCodeCamp • 4h ago

Discover More Articles