github.com/motyar/up@v0.2.10/Readme.md (about)

     1  ![](assets/title.png)
     2  
     3  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.
     4  
     5  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.
     6  
     7  Up currently supports Node.js, Golang, Python, Java, Crystal, 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, flexibility, and scalability of AWS.
     8  
     9  Check out the [documentation](https://apex.github.io/up/) for more instructions, try one of the [examples](https://github.com/apex/up-examples), or chat with us in [Slack](https://apex-slackin.herokuapp.com/).
    10  
    11  ![](assets/screen.png)
    12  
    13  ## Features
    14  
    15  Open source community edition.
    16  
    17  ![Open source edition features](assets/features-community.png)
    18  
    19  ## Pro Features
    20  
    21  Close sourced pro edition: Coming less soon.
    22  
    23  ![Pro edition features](assets/features-pro.png)
    24  
    25  ## Pricing
    26  
    27  Updated as of July 2017 based on public information. Some services offer a restricted free version, or free access for solo developers – this table is based on commercial use.
    28  
    29  ![Pricing comparison table](assets/pricing.png)
    30  
    31  ## Quick Start
    32  
    33  Install Up:
    34  
    35  ```
    36  $ curl -sfL https://raw.githubusercontent.com/apex/up/master/install.sh | sh
    37  ```
    38  
    39  Tell up which AWS profile to use:
    40  
    41  ```
    42  export AWS_PROFILE=example
    43  ```
    44  
    45  Create an `app.js` file:
    46  
    47  ```js
    48  require('http').createServer((req, res) => {
    49    res.end('Hello World\n')
    50  }).listen(process.env.PORT)
    51  ```
    52  
    53  Deploy the app:
    54  
    55  ```
    56  $ up
    57  ```
    58  
    59  Open it in the browser:
    60  
    61  ```
    62  $ up url --open
    63  ```
    64  
    65  ## Community
    66  
    67  - [Documentation](https://apex.github.io/up/)
    68  - [Example applications](https://github.com/apex/up-examples)
    69  - [Twitter](https://twitter.com/tjholowaychuk)
    70  - [Slack](https://apex-slackin.herokuapp.com/) to chat with apex(1) and up(1) community members
    71  - [Blog](https://blog.apex.sh/) to follow release posts, tips and tricks
    72  - [Wiki](https://github.com/apex/up/wiki) for article listings, database suggestions, etc
    73  
    74  <a href="https://apex.sh"><img src="http://tjholowaychuk.com:6000/svg/sponsor"></a>