astro/packages/create-astro
Matthew Phillips 6de740d62f
Fix starter template's Tour component (#290)
* Fix starter template's Tour component

This component had an extra backtick and also didn't import the Markdown component.

* Add a changeset
2021-06-02 13:50:16 -04:00
..
src Fix starter template's Tour component (#290) 2021-06-02 13:50:16 -04:00
test Create astro fixes (#267) 2021-05-28 10:06:22 -06:00
.gitignore Create astro fixes (#267) 2021-05-28 10:06:22 -06:00
CHANGELOG.md Create astro fixes (#267) 2021-05-28 10:06:22 -06:00
create-astro.js create-astro UI (#164) 2021-05-03 12:15:13 -05:00
package.json chore: release create-astro@0.2.0 2021-05-28 21:39:51 -05:00
README.md Format (#167) 2021-05-03 12:26:10 -06:00

create-astro

Scaffolding for Astro projects

With NPM:

npm init astro

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 init astro my-astro-project --template blank

# npm 7+, extra double-dash is needed:
npm init astro my-astro-project -- --template blank

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

To see all available options, use the --help flag.

Templates

The following templates are included:

  • starter
  • blank

Feel free to open a PR to add additional templates.