The web framework that scales with you — Build fast content sites, powerful web applications, dynamic server APIs, and everything in-between ️ Star to support our work!
Find a file
Nate Moore 8af8b86f0b
WIP: Launch Post (#333)
* feat: add blog to `www`

* feat: add BlogHeader

* wip: add heroImage support

* feat: update hero image styling

* finalize blog post

* use site index instead of blog index

* fix: don't use float

* chore: copy cleanup

* fix: scroll issue on landing page

Co-authored-by: Fred K. Schott <fkschott@gmail.com>
2021-06-08 14:01:46 -05:00
.changeset Version Packages (#337) 2021-06-08 13:56:29 -04:00
.github Move parser to the scoped package name (#319) 2021-06-07 16:05:13 -04:00
.vscode Fix running the extension (#181) 2021-05-08 11:35:20 -04:00
assets fix: brand color 2021-05-16 10:06:12 -05:00
docs [ci] yarn format 2021-06-07 14:41:07 +00:00
examples Give the blog template a default site (#338) 2021-06-08 14:13:13 -04:00
packages WIP: Launch Post (#333) 2021-06-08 14:01:46 -05:00
scripts Make Astro compatible with Windows (#215) 2021-05-17 17:52:11 -05:00
tools Move parser to the scoped package name (#319) 2021-06-07 16:05:13 -04:00
www WIP: Launch Post (#333) 2021-06-08 14:01:46 -05:00
.editorconfig Adds .editorconfig file (#162) 2021-05-03 12:41:39 -05:00
.eslintignore Migrate to yarn monorepo (#157) 2021-04-30 16:33:35 -05:00
.eslintrc.cjs Prettier support for .astro files (#106) 2021-04-21 11:14:44 -05:00
.gitignore Example: Docs template (#226) 2021-05-27 09:16:14 -05:00
.nvmrc set node version in nvmrc & engines to lts (#87) 2021-04-13 13:03:26 -04:00
.prettierignore fix: format 2021-05-13 14:28:38 -05:00
.prettierrc.json Annoying Lint PR™ (#3) 2021-03-16 12:37:45 -06:00
contributing.md redesign create-astro (#301) 2021-06-08 11:10:56 -04:00
lerna.json Format (#167) 2021-05-03 12:26:10 -06:00
LICENSE redesign create-astro (#301) 2021-06-08 11:10:56 -04:00
package.json redesign create-astro (#301) 2021-06-08 11:10:56 -04:00
README.md Add README to packages/astro (#313) 2021-06-07 17:38:22 -05:00
tsconfig.base.json Migrate to yarn monorepo (#157) 2021-04-30 16:33:35 -05:00
yarn.lock redesign create-astro (#301) 2021-06-08 11:10:56 -04:00

Astro

Astro is a fresh but familiar approach to building websites. Astro combines decades of proven performance best practices with the DX improvements of the component-oriented era.

With Astro, you can use your favorite JavaScript framework and automatically ship the bare-minimum amount of JavaScript—by default, it's none at all!

Project Status

⚠️ Astro is still an early beta, missing features and bugs are to be expected! If you can stomach it, then Astro-built sites are production ready and several production websites built with Astro already exist in the wild. We will update this note once we get closer to a stable, v1.0 release.

🔧 Setup

npm init astro ./my-astro-project

# then... cd => install => start
cd ./my-astro-project
npm install
npm start

🚀 Build & Deployment

The default Astro project has the following scripts in the /package.json file:

{
  "scripts": {
    "start": "astro dev .",
    "build": "astro build ."
  }
}

For local development, run:

npm run start

To build for production, run the following command:

npm run build

To deploy your Astro site to production, upload the contents of /dist to your favorite static site host.

🥾 Guides

🚀 Basic Usage

Even though nearly-everything is configurable, we recommend starting out by creating an src/ folder in your project with the following structure:

├── src/
│   ├── components/
│   └── pages/
│       └── index.astro
├── public/
└── package.json
  • src/components/*: where your reusable components go. You can place these anywhere, but we recommend a single folder to keep them organized.
  • src/pages/*: this is a special folder where your routing lives.

🚦 Routing

Routing happens in src/pages/*. Every .astro or .md file in this folder corresponds with a public URL. For example:

Local file Public URL
src/pages/index.astro /index.html
src/pages/post/my-blog-post.md /post/my-blog-post/index.html

🗂 Static Assets

Static assets should be placed in a public/ folder in your project. You can place any images, fonts, files, or global CSS in here you need to reference.

🪨 Generating HTML with Astro

Astro introduces a special .astro format, which combines the best of HTML with the best of JavaScript.

To learn more about .astro files, read our complete Syntax Guide.

✍️ Markdown

Spend less time configuring your tooling and more time writing content. Astro has phenomenal Markdown support (powered by remark) baked in!

Not only can you use local .md files as pages, but Astro also comes with a <Markdown> component to turn every page into a Markdown file. Using the <Markdown> component in an .astro file should feel very similar to MDX, but with the ability to use components from any framework (with partial hydration, too)!

To learn more about use Markdown in Astro, read our Markdown Guide.

Dynamic Components

TODO: Astro dynamic components guide

💧 Partial Hydration

By default, Astro outputs zero client-side JS. If you'd like to include an interactive component in the client output, you may use any of the following techniques.

  • <MyComponent /> will render an HTML-only version of MyComponent (default)
  • <MyComponent:load /> will render MyComponent on page load
  • <MyComponent:idle /> will use requestIdleCallback() to render MyComponent as soon as main thread is free
  • <MyComponent:visible /> will use an IntersectionObserver to render MyComponent when the element enters the viewport

⚛️ State Management

Frontend state management depends on your framework of choice. Below is a list of popular frontend state management libraries, and their current support with Astro.

Our goal is to support all popular state management libraries, as long as there is no technical reason that we cannot.

  • React/Preact
    • Redux: Partial Support (Note: You can access a Redux store directly, but full react-redux support requires the ability to set a custom <Provider> wrapper to every component island. Planned.)
    • Recoil: Full Support
  • Svelte
    • Svelte Stores: Full Support
  • Vue:
    • Vuex: Partial Support (Note: You can access a vuex store directly, but full vuex support requires the ability to set a custom vue.use(store) call to every component island. Planned.)

Are we missing your favorite state management library? Add it to the list above in a PR (or create an issue)!

💅 Styling

Styling in Astro is meant to be as flexible as youd like it to be! The following options are all supported:

Framework Global CSS Scoped CSS CSS Modules
Astro (.astro) N/A¹
React / Preact
Vue
Svelte

¹ .astro files have no runtime, therefore Scoped CSS takes the place of CSS Modules (styles are still scoped to components, but dont need dynamic values)

To learn more about writing styles in Astro, see our Styling Guide.

👉 Styling

🐶 Fetching Data

Fetching data is what Astro is all about! Whether your data lives remotely in an API or in your local project, Astro has got you covered.

For fetching from a remote API, use a native JavaScript fetch() (docs) as you are used to. For fetching local content, use Astro.fetchContent() (docs).

// src/components/MyComponent.Astro

---
// Example 1: fetch remote data from your own API
const remoteData = await fetch('https://api.mysite.com/v1/people').then((res) => res.json());

// Example 2: load local markdown files
const localData = Astro.fetchContent('../post/*.md');
---

🗺️ Sitemap

Astro will automatically create a /sitemap.xml for you for SEO! Be sure to set buildOptions.site in your Astro config so the URLs can be generated properly.

⚠️ Note that Astro wont inject this into your HTML for you! Youll have to add the tag yourself in your <head> on all pages that need it:

<link rel="sitemap" href="/sitemap.xml" />
Examples

🍱 Collections (beta)

Fetching data is easy in Astro. But what if you wanted to make a paginated blog? What if you wanted an easy way to sort data, or filter data based on part of the URL? Or generate an RSS 2.0 feed? When you need something a little more powerful than simple data fetching, Astros Collections API may be what you need.

👉 Collections API

Publishing Astro components

Using Astro components in your project allows you to break up your pages into small reuseable units of functionality. If you want to share your Astro components you can do so by publishing them to npm.

👉 Publishing Astro components guide

⚙️ Config

Configuration for Astro is done through the astro.config.mjs file at the root of your project. To learn more:

👉 astro.config.mjs Reference

Astro uses Snowpack for module resolution. You can configure Snowpack by adding a snowpack.config.mjs file in the root of your project. You might need this to add loader plugins, for example. To learn more:

👉 snowpack.config.mjs Reference

🪄 Renderers

Astro is able to render React, Svelte, Vue, and Preact components out of the box. If you'd like to add support for another framework, you can build a renderer plugin using the same interface as Astro's official renderers.

👉 Renderer Docs

📚 API

👉 Full API Reference

👩🏽‍💻 CLI

👉 Command Line Docs

🏗 Development Server

👉 Dev Server Docs