···11+# Astro Starter Kit: Deno
22+33+[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/deno)
44+[](https://codesandbox.io/s/github/withastro/astro/tree/latest/examples/deno)
55+66+```
77+npm create astro@latest -- --template deno
88+```
99+1010+> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
1111+1212+
1313+1414+1515+## 🚀 Project Structure
1616+1717+Inside of your Astro project, you'll see the following folders and files:
1818+1919+```
2020+/
2121+├── public/
2222+│ └── favicon.svg
2323+├── src/
2424+│ ├── components/
2525+│ │ └── Layout.astro
2626+│ └── pages/
2727+│ └── index.astro
2828+├── package.json
2929+└── tsconfig.json
3030+```
3131+3232+Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
3333+3434+There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
3535+3636+Any static assets, like images, can be placed in the `public/` directory.
3737+3838+## 🧞 Commands
3939+4040+All commands are run from the root of the project, from a terminal:
4141+4242+| Command | Action |
4343+| :--------------------- | :----------------------------------------------- |
4444+| `npm install` | Installs dependencies |
4545+| `npm run dev` | Starts local dev server at `localhost:3000` |
4646+| `npm run build` | Build your production site to `./dist/` |
4747+| `npm run preview` | Preview your build locally, before deploying |
4848+| | (preview uses Deno CLI) |
4949+| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
5050+| `npm run astro --help` | Get help using the Astro CLI |
5151+5252+## 👀 Want to learn more?
5353+5454+Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).