https://github.com/chantastic/react.holiday
A React advent for nerds and n00bs.
https://github.com/chantastic/react.holiday
Last synced: 12 months ago
JSON representation
A React advent for nerds and n00bs.
- Host: GitHub
- URL: https://github.com/chantastic/react.holiday
- Owner: chantastic
- License: other
- Created: 2017-12-04T22:51:51.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-11-28T08:03:47.000Z (over 1 year ago)
- Last Synced: 2025-06-09T14:08:08.895Z (about 1 year ago)
- Language: Astro
- Size: 6.53 MB
- Stars: 21
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
# Astro Starter Kit: Blog
```
npm init astro -- --template blog
```
[](https://stackblitz.com/github/snowpackjs/astro/tree/latest/examples/blog)
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
Features:
- ✅ SEO-friendly setup with canonical URLs and OpenGraph data
- ✅ Full Markdown support
- ✅ RSS 2.0 generation
- ✅ Sitemap.xml generation
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```
/
├── public/
│ ├── robots.txt
│ └── favicon.ico
├── src/
│ ├── components/
│ │ └── Tour.astro
│ └── pages/
│ └── index.astro
└── package.json
```
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the `public/` directory.
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :---------------- | :------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:3000` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
## 👀 Want to learn more?
Feel free to check [our documentation](https://github.com/snowpackjs/astro) or jump into our [Discord server](https://astro.build/chat).