astro/packages/create-astro
2023-08-09 16:28:14 +01:00
..
src Add shorthand for Starlight templates to create astro (#7993) 2023-08-08 12:08:46 -05:00
test nit: use node: prefix everywhere (#7692) 2023-07-18 02:17:59 +02:00
CHANGELOG.md [ci] release (beta) (#7897) 2023-08-08 11:04:14 +01:00
create-astro.mjs create-astro bug fixes (#5319) 2022-11-08 10:33:36 -06:00
package.json [ci] release (beta) (#7897) 2023-08-08 11:04:14 +01:00
README.md Format markdown files (#7439) 2023-06-26 11:34:13 +08:00
tsconfig.json Remove support for Node 16 (#7780) 2023-08-08 11:01:33 +01:00

create-astro

Scaffolding for Astro projects

With NPM:

npm create astro@latest

With Yarn:

yarn create astro

create-astro automatically runs in interactive mode, but you can also specify your project name and template with command line arguments.

# npm 6.x
npm create astro@latest my-astro-project --template minimal

# npm 7+, extra double-dash is needed:
npm create astro@latest my-astro-project -- --template minimal

# yarn
yarn create astro my-astro-project --template minimal

Check out the full list of example templates, available on GitHub.

You can also use any GitHub repo as a template:

npm create astro@latest my-astro-project -- --template cassidoo/shopify-react-astro

CLI Flags

May be provided in place of prompts

Name Description
--template <name> Specify your template.
--install / --no-install Install dependencies (or not).
--git / --no-git Initialize git repo (or not).
--yes (-y) Skip all prompt by accepting defaults.
--no (-n) Skip all prompt by declining defaults.
--dry-run Walk through steps without executing.
--skip-houston Skip Houston animation.
--typescript <option> TypeScript option: strict / strictest / relaxed.