An open API service indexing awesome lists of open source software.

https://github.com/didierfranc/serverless-modern

Modern javascript with serverless and AWS Lambda
https://github.com/didierfranc/serverless-modern

es2015 javascript lambda modern serverless

Last synced: 12 months ago
JSON representation

Modern javascript with serverless and AWS Lambda

Awesome Lists containing this project

README

          

# serverless-modern

### Installation

The first thing you have to do is setting your AWS credentials.

```js
yarn aws --key 1234 --secret 5678
```

### Develop

Edit your code in `/src` and watch changes at `http://localhost:3000`

```js
yarn dev
```

### Deploy

This will deploy your app to AWS Lambda

```js
yarn deploy
yarn deploy -f hello // only deploy your function (faster)
```

This is it.