0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/packages/astro
Caleb Jasik efb41f22c3
Add Astro <Debug/> component (#675)
* Initial MVP Debug component

* Document the prettifying of the input

* Just make `<Debug/>` a wrapper around `<Prism/>` lol

* feat: add details/summary debug component

* chore: remove Props (unused)

* fix: prefer `div` to semantic elements

* chore: format

* fix: prop-drill `class` into components

* fix: ensure `astro/components` are evaluated lazily

* feat(debug): export debug component from `astro/debug`

* fix: minimal example local snowpack config

* docs: add debugging docs

* chore: add changeset

* docs: update debug docs

Co-authored-by: Nate Moore <nate@skypack.dev>
2021-08-23 16:43:22 -04:00
..
components Add Astro <Debug/> component (#675) 2021-08-23 16:43:22 -04:00
src fix issue with multiple getStaticPaths calls during build (#1194) 2021-08-23 15:44:49 -04:00
test fix issue with multiple getStaticPaths calls during build (#1194) 2021-08-23 15:44:49 -04:00
astro.js add a real-world check for ESM<>CJS named export support (#1175) 2021-08-20 11:04:55 -07:00
CHANGELOG.md Version Packages (#1181) 2021-08-23 15:59:55 -04:00
internal.d.ts Format (#167) 2021-05-03 12:26:10 -06:00
package.json Add Astro <Debug/> component (#675) 2021-08-23 16:43:22 -04:00
README.md Update README.md 2021-07-15 15:38:33 -04:00
snowpack-plugin-jsx.cjs [ci] yarn format 2021-07-28 18:32:50 +00:00
snowpack-plugin.cjs [ci] yarn format 2021-07-20 04:07:49 +00:00
tsconfig.json tsconfig fix (#752) 2021-07-19 18:23:39 -07:00

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. Use your favorite JavaScript framework and automatically ship the bare-minimum amount of JavaScript—by default.

Announcement Post →

Full Documentation Site →

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.

Quick Start

# get started with astro in 3 easy steps:
mkdir new-project-directory
cd new-project-directory
npm init astro

Full Documentation Site →