Bumps the prod-dependencies group with 4 updates: [@expressive-code/plugin-line-numbers](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/@expressive-code/plugin-line-numbers), [astro-integration-kit](https://github.com/florian-lefebvre/astro-integration-kit), [expressive-code](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/expressive-code) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro). Updates `@expressive-code/plugin-line-numbers` from 0.33.4 to 0.33.5 - [Release notes](https://github.com/expressive-code/expressive-code/releases) - [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/@expressive-code/plugin-line-numbers/CHANGELOG.md) - [Commits](https://github.com/expressive-code/expressive-code/commits/@expressive-code/plugin-line-numbers@0.33.5/packages/@expressive-code/plugin-line-numbers) Updates `astro-integration-kit` from 0.5.1 to 0.6.0 - [Release notes](https://github.com/florian-lefebvre/astro-integration-kit/releases) - [Commits](https://github.com/florian-lefebvre/astro-integration-kit/compare/astro-integration-kit@0.5.1...astro-integration-kit@0.6.0) Updates `expressive-code` from 0.33.4 to 0.33.5 - [Release notes](https://github.com/expressive-code/expressive-code/releases) - [Changelog](https://github.com/expressive-code/expressive-code/blob/main/packages/expressive-code/CHANGELOG.md) - [Commits](https://github.com/expressive-code/expressive-code/commits/expressive-code@0.33.5/packages/expressive-code) Updates `astro` from 4.5.0 to 4.5.5 - [Release notes](https://github.com/withastro/astro/releases) - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md) - [Commits](https://github.com/withastro/astro/commits/astro@4.5.5/packages/astro) --- updated-dependencies: - dependency-name: "@expressive-code/plugin-line-numbers" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-dependencies - dependency-name: astro-integration-kit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: prod-dependencies - dependency-name: expressive-code dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-dependencies - dependency-name: astro dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.. | ||
.vscode | ||
public | ||
src | ||
.gitignore | ||
README.md | ||
astro.config.mjs | ||
package.json | ||
tsconfig.json |
README.md
Astro Starter Kit: Basics
npm create astro@latest -- --template basics
🧑🚀 Seasoned astronaut? Delete this file. Have fun!
🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
/
├── public/
│ └── favicon.svg
├── src/
│ ├── components/
│ │ └── Card.astro
│ ├── layouts/
│ │ └── Layout.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:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add , astro check |
npm run astro -- --help |
Get help using the Astro CLI |
👀 Want to learn more?
Feel free to check our documentation or jump into our Discord server.