···11-# Astro Starter Kit: Basics
22-33-```sh
44-npm create astro@latest -- --template basics
55-```
66-77-[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
88-[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
99-[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)
1010-1111-> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
1212-1313-
1414-1515-## 🚀 Project Structure
1616-1717-Inside of your Astro project, you'll see the following folders and files:
1818-1919-```text
2020-/
2121-├── public/
2222-│ └── favicon.svg
2323-├── src/
2424-│ ├── layouts/
2525-│ │ └── Layout.astro
2626-│ └── pages/
2727-│ └── index.astro
2828-└── package.json
2929-```
3030-3131-To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/).
3232-3333-## 🧞 Commands
3434-3535-All commands are run from the root of the project, from a terminal:
3636-3737-| Command | Action |
3838-| :------------------------ | :----------------------------------------------- |
3939-| `npm install` | Installs dependencies |
4040-| `npm run dev` | Starts local dev server at `localhost:4321` |
4141-| `npm run build` | Build your production site to `./dist/` |
4242-| `npm run preview` | Preview your build locally, before deploying |
4343-| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
4444-| `npm run astro -- --help` | Get help using the Astro CLI |
4545-4646-## 👀 Want to learn more?
4747-4848-Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
···11----
22-import Welcome from '../components/Welcome.astro';
33-import Layout from '../layouts/Layout.astro';
44-55-// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
66-// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
77----
88-99-<Layout>
1010- <Welcome />
1111-</Layout>