c9d833ee0b
* fix: add packages to external * fix: improve renderer error message * fix: reenable vue renderer * chore: remove `extensions` from templates * fix: reenable @astrojs/renderer-vue * refactor: add types to snowpack plugin * fix: update snowpack * fix: use manual SSR wrapper for Svelte * chore: add changesets * chore: bump snowpack * test: fix failing test * chore: remove redundant entries |
||
---|---|---|
.. | ||
src | ||
test | ||
.gitignore | ||
CHANGELOG.md | ||
create-astro.js | ||
package.json | ||
README.md |
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.