<p align="center">
<a href="https://sst.dev/">
<img alt="SST" src="https://raw.githubusercontent.com/sst/identity/main/variants/sst-full.svg" width="300" />
</a>
</p>
<p align="center">
<a href="https://sst.dev/discord"><img alt="Discord" src="https://img.shields.io/discord/983865673656705025?style=flat-square&label=Discord" /></a>
<a href="https://www.npmjs.com/package/sst"><img alt="npm" src="https://img.shields.io/npm/v/sst.svg?style=flat-square" /></a>
<a href="https://github.com/anomalyco/sst/actions/workflows/build.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/anomalyco/sst/build.yml?style=flat-square&branch=dev" /></a>
</p>
---
Build full-stack apps on your own infrastructure.
## Installation
If you are using SST as a part of your Node project, we recommend installing it locally.
```bash
npm install sst
```
If you are not using Node, you can install the CLI globally.
```bash
To install a specific version.
```bash
To use a package manager, [check out our docs](https://sst.dev/docs/reference/cli/).
#### Manually
Download the pre-compiled binaries from the [releases](https://github.com/sst/sst/releases/latest) page and copy to the desired location.
## Get Started
Get started with your favorite framework:
- [Next.js](https://sst.dev/docs/start/aws/nextjs)
- [Remix](https://sst.dev/docs/start/aws/remix)
- [Astro](https://sst.dev/docs/start/aws/astro)
- [API](https://sst.dev/docs/start/aws/api)
## Learn More
Learn more about some of the key concepts:
- [Live](https://sst.dev/docs/live)
- [Linking](https://sst.dev/docs/linking)
- [Console](https://sst.dev/docs/console)
- [Components](https://sst.dev/docs/components)
## Contributing
Here's how you can contribute:
- Help us improve our docs
- Find a bug? Open an issue
- Feature request? Submit a PR
## Running Locally
Run `bun run setup`. You need [Go](https://go.dev/) and [Bun](https://bun.sh/) installed.
Now you can run the CLI locally on any of the `examples/` apps.
```bash
cd examples/aws-api
go run ../../cmd/sst <command>
```
If you want to build the CLI binary, run `bun run build:cli`. This will create a `sst` binary that you can use.
For building the docs, run `bun run docs:generate` and `bun run docs:dev`.
---