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-1
and function name defaults toslsNodeREDFunction
).package.json
simple-proxy-api.yaml
cloudformation.yaml
settings.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.js
open
http://localhost:1880
and make a flow using aHTTP in
node. You can test it with local PC.flow.json
is 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 theslsNodeREDStack
stack, then click theApiUrl
value under the Outputs section - this will open a new page with your running API.
Or
you can getApiUrl
from 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-stack
to delete the CloudFormation Stack, including the API and Lambda Function. If you specified a new bucket in theconfig
command for step 1 and want to delete that bucket, runnpm run delete-bucket
.
- Node.js version 8.12
- Node-RED version 0.20.5
this directory includes
- Swagger file
- CloudFormation template
- Serverless Application Model (SAM)
- helper scripts to help you set up and manage your application.
See the more details on how to customize an existing (or create a new) Node.js project based on this example.