aws-serverless-node-red
aws-serverless-node-red copied to clipboard
Node-RED on AWS Lambda using Amazon API Gateway and S3
Node-RED on AWS Lambda using Amazon API Gateway and S3
Overview

Quick Start
Steps for running the Node-RED on lambda using API Gateway and S3
This guide assumes you have already set up an AWS account and have the latest version of the AWS CLI installed.
-
From your preferred project directory:
git clone https://github.com/sakazuki/aws-serverless-node-red.git cd aws-serverless-node-red -
Run the following command to configure with your variables.
AWS_ACCOUNT_ID=123456789012 S3_BUCKET=node-red123 AWS_REGION=us-west-2 AWS_FUNCNAME=funcname123 AWS_STACK_NAME=Node-RED npm run config -- --account-id="${AWS_ACCOUNT_ID}" \ --bucket-name="${S3_BUCKET}" \ --region="${AWS_REGION}" \ --function-name="${AWS_FUNCNAME}" \ --stack-name="${AWS_STACK_NAME}"This modifies the following files with your account ID, bucket, region, function name and stack name (region defaults to
us-east-1and function name defaults toslsNodeREDFunction).package.jsonsimple-proxy-api.yamlcloudformation.yamlsettings.js
If the bucket you specify does not yet exist, the next step will create it for you. This step modifies the existing files in-place; if you wish to make changes to these settings, you will need to modify these files manually.
-
Run the following command to installs the node dependencies, creates an S3 bucket (if it does not already exist), packages and deploys your serverless Express application to AWS Lambda, and creates an API Gateway proxy API.
npm run setup ### Windows users: npm run win-setup -
Make a Node-RED flow on local PC
node node_modules/.bin/node-red -s ./settings.jsopen
http://localhost:1880and make a flow using aHTTP innode. You can test it with local PC.flow.jsonis saved on S3 bucket. -
After the local test, You can test it using API Gateway.
open the AWS CloudFormation console https://console.aws.amazon.com/cloudformation/home and switch to the region you specified. Select theslsNodeREDStackstack, then click theApiUrlvalue under the Outputs section - this will open a new page with your running API.
Or
you can getApiUrlfrom the output of the following command.aws cloudformation describe-stacks --stack-name ${AWS_STACK_NAME} \ --output json --query "Stacks[*].Outputs" -
If you would prefer to delete AWS assets that were just created, simply run
npm run delete-stackto delete the CloudFormation Stack, including the API and Lambda Function. If you specified a new bucket in theconfigcommand for step 1 and want to delete that bucket, runnpm run delete-bucket.
Version
- Node.js version 8.12
- Node-RED version 0.20.5
Resource
this directory includes
- Swagger file
- CloudFormation template
- Serverless Application Model (SAM)
- helper scripts to help you set up and manage your application.
Reference
See the more details on how to customize an existing (or create a new) Node.js project based on this example.