astro/packages/create-astro
duncanhealy 5dc3aa007a
chore: update getting started config #245 (#250)
* chore: update getting started config #245

* chore: reorder renderers
2021-05-26 19:56:19 +01:00
..
src chore: update getting started config #245 (#250) 2021-05-26 19:56:19 +01:00
test Support skip install deps (#242) 2021-05-25 17:16:49 -05:00
CHANGELOG.md chore: bump create-astro deps 2021-05-17 09:34:36 -05:00
create-astro.js create-astro UI (#164) 2021-05-03 12:15:13 -05:00
package.json Support skip install deps (#242) 2021-05-25 17:16:49 -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.