create-sst
A simple CLI to create new SST projects.
Usage
There's no need to install this CLI. Just use it directly to create your projects.
- npm
- yarn
- pnpm
npx create-sst@two
yarn create sst
pnpm create sst
This will prompt you for a name and bootstrap a new project in that directory.
Options
Pass in the following (optional) options.
--template
Instead of the standard starter, you can choose to use one of our minimal setups or examples as the template to bootstrap.
- npm
- yarn
- pnpm
npx create-sst@two --template=other/go
yarn create sst --template=other/go
pnpm create sst --template=other/go
Arguments
<destination>
Specify a project name, instead of typing it into the interactive prompt.
- npm
- yarn
- pnpm
npx create-sst@two my-sst-app
yarn create sst my-sst-app
pnpm create sst my-sst-app