Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/crazywoola/serverless-101


https://github.com/crazywoola/serverless-101

Last synced: 10 days ago
JSON representation

Awesome Lists containing this project

README

        

# serverless-101

## Create your first function

```bash
fn init --runtime node nodefn
```

## Deploy your application

```bash
# create a application to contain functions
fn create app demoapp
# deploy a function to local fn server
fn --verbose deploy --app demoapp --local
```

## Call your function

```bash
fn invoke demoapp nodefn
```