Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apex/up
Deploy infinitely scalable serverless apps, apis, and sites in seconds to AWS.
https://github.com/apex/up
api api-gateway aws aws-infrastructure aws-lambda deploy-tool deployment golang graphql heroku http lambda microservice microservices nodejs serverless static up
Last synced: 2 days ago
JSON representation
Deploy infinitely scalable serverless apps, apis, and sites in seconds to AWS.
- Host: GitHub
- URL: https://github.com/apex/up
- Owner: apex
- License: mit
- Created: 2017-06-21T01:20:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-15T07:24:56.000Z (9 months ago)
- Last Synced: 2024-10-29T15:04:59.070Z (about 1 month ago)
- Topics: api, api-gateway, aws, aws-infrastructure, aws-lambda, deploy-tool, deployment, golang, graphql, heroku, http, lambda, microservice, microservices, nodejs, serverless, static, up
- Language: Go
- Homepage: https://up.docs.apex.sh
- Size: 22.7 MB
- Stars: 8,792
- Watchers: 114
- Forks: 377
- Open Issues: 290
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-go - apex/up
- awesome-starred-test - apex/up - Deploy infinitely scalable serverless apps, apis, and sites in seconds to AWS. (Go)
- awesome-repositories - apex/up - Deploy infinitely scalable serverless apps, apis, and sites in seconds to AWS. (Go)
- open-source-jobs - apex up
- awesome-starred - apex/up - Deploy infinitely scalable serverless apps, apis, and sites in seconds to AWS. (serverless)
- awesome-list-microservice - up
README
![](assets/title.png)
Up deploys infinitely scalable serverless apps, APIs, and static websites in seconds, so you can get back to working on what makes your product unique.
With Up there's no need to worry about managing or scaling machines, paying for idle servers, worrying about logging infrastructure or alerting. Just deploy your app with `$ up` and you're done!
Use the free OSS version, or subscribe to [Up Pro](#pro-features) for a small monthly fee for unlimited use within your company, there is no additional cost per team-member or application. Deploy dozens or even hundreds of applications for pennies thanks to AWS Lambda's cost effective nature.
## About
Up focuses on deploying "vanilla" HTTP servers so there's nothing new to learn, just develop with your favorite existing frameworks such as Express, Koa, Django, Golang net/http or others.
Up currently supports Node.js, Golang, Python, Java, Crystal, Clojure and static sites out of the box. Up is platform-agnostic, supporting AWS Lambda and API Gateway as the first targets. You can think of Up as self-hosted Heroku style user experience for a fraction of the price, with the security, isolation, flexibility, and scalability of AWS.
Check out the [documentation](https://up.docs.apex.sh/) for more instructions and links, or try one of the [examples](https://github.com/apex/up-examples), or chat with us in [Slack](https://chat.apex.sh/).
![](assets/screen2.png)
## OSS Features
Features of the free open-source edition.
![Open source edition features](assets/features-community.png)
## Pro Features
Up Pro provides additional features for production-ready applications such as encrypted environment variables, error alerting, unlimited team members, unlimited applications, priority [email support](mailto:[email protected]), and global deployments for **$19.99/mo USD**. Visit [Subscribing to Up Pro](https://apex.sh/docs/up/guides/#subscribing_to_up_pro) to get started.
![Pro edition features](assets/features-pro.png)
[![](https://gui.apex.sh/component?name=ShadowButton&config=%7B%22text%22%3A%22SUBSCRIBE%22%2C%22color%22%3A%227956EF%22%7D)](https://apex.sh/docs/up/guides/#subscribing_to_up_pro)
## Quick Start
Install Up:
```
$ curl -sf https://up.apex.sh/install | sh
```Create an `app.js` file:
```js
require('http').createServer((req, res) => {
res.end('Hello World\n')
}).listen(process.env.PORT)
```Deploy the app:
```
$ up
```Open it in the browser, or copy the url to your clipboard:
```
$ up url -o
$ up url -c
```