0.0.51 • Published 2 months ago

rise-functions v0.0.51

Weekly downloads
-
License
ISC
Repository
-
Last release
2 months ago

Rise Functions

Rise Functions is a CLI which takes a rise.mjs file, and deploys AWS Lambda functions into your AWS account. All lambda functions are located in a /functions folder. The goal of rise functions is to make building AWS Lambda functions as simple and straight forward as possible.

Install

npm i -g rise-functions

Usage

Deploy

rise-functions deploy

Project Structure

A project as the following structure:

/functions
    myFunctionA.mjs
    myFunctionB.mjs
    myFunctionC.mjs
rise.mjs

If your function requires multiple files, or node_modules, functions can also be defined inside folders.

/functions
    /myFunctionA
        util.mjs
        index.mjs
    /myFunctionB
        /node_modules
        util.mjs
        index.mjs
rise.mjs

What is the rise.mjs file for?

The rise.mjs file is for configuring your project. Here is an example:

export default {
    name: 'nameOfMyProject',
    // optional
    domain: {
        name: 'mydomain.com',
        path: '/serviceA',
        stage: 'dev'
    }
}

The only required parameter is the name. This will be used to name:

  • the s3 bucket where your code will be uploaded
  • lambda functions
  • iam roles

What CLI flags are available?

You can set the region of your deployment like so:

rise-functions deploy --region=us-east-2
0.0.51

2 months ago

0.0.50

2 months ago

0.0.49

2 months ago

0.0.46

5 months ago

0.0.47

5 months ago

0.0.48

5 months ago

0.0.40

8 months ago

0.0.41

8 months ago

0.0.42

7 months ago

0.0.43

7 months ago

0.0.44

7 months ago

0.0.39

8 months ago

0.0.38

11 months ago

0.0.20

1 year ago

0.0.21

1 year ago

0.0.22

1 year ago

0.0.23

1 year ago

0.0.24

1 year ago

0.0.25

1 year ago

0.0.37

1 year ago

0.0.15

1 year ago

0.0.16

1 year ago

0.0.17

1 year ago

0.0.18

1 year ago

0.0.19

1 year ago

0.0.30

1 year ago

0.0.31

1 year ago

0.0.33

1 year ago

0.0.34

1 year ago

0.0.35

1 year ago

0.0.13

1 year ago

0.0.36

1 year ago

0.0.14

1 year ago

0.0.26

1 year ago

0.0.27

1 year ago

0.0.28

1 year ago

0.0.29

1 year ago

0.0.10

1 year ago

0.0.11

1 year ago

0.0.12

1 year ago

0.0.9

1 year ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago