A simple CLI (create-serverless-stack) that helps you create your Serverless Stack projects.
View the create-serverless-stack docs here.
There's no need install this CLI. Just use it directly to create your projects.
With npx.
$ npx create-serverless-stack@latest my-sst-appOr with npm 6+
$ npm init serverless-stack@latest my-sst-appOr with Yarn 0.25+
$ yarn create serverless-stack my-sst-appThis will create an app in the my-sst-app/ directory.
Pass in the following (optional) options.
The language of the project: javascript, typescript, python, go, csharp, or fsharp. Defaults to javascript. For example:
$ npm init serverless-stack@latest my-sst-app -- --language typescriptNote that extra -- when using npm init.
Creates a project using one of our examples. Pass in the name of the example you want.
$ npx create-serverless-stack@latest --example rest-api
# Or
$ npm init serverless-stack --example rest-api
$ yarn create serverless-stack --example rest-apiYou can also pass in a name for your app.
$ npx create-serverless-stack@latest --example rest-api my-sst-apiUse Yarn instead of npm as the packager. Defaults to npm. For example:
$ yarn create serverless-stack my-sst-app --use-yarn