## AWS Greengrass Core SDK for JavaScript The **AWS Greengrass Core SDK for JavaScript** allows developers to write JavaScript Lambda functions which will run within Greengrass. ## Overview This document provides instructions for preparing your Greengrass Core environment to run Lambda functions written in JavaScript. It also includes examples on how to develop a Lambda function in JavaScript as well as packaging and running an example Hello World file in JavaScript for your Greengrass core. ## Preparing your Greengrass to run NodeJS Lambda functions The environment where Greengrass is running on needs to be able to run NodeJS 12.x applications. * Install NodeJS 12 for your platform. You can download the newest NodeJS from [https://nodejs.org/en/download/](https://nodejs.org/en/download/). * When you untar the package downloaded from NodeJS website, you will find `node` file under `bin` directory. * Copy the file to _**/usr/bin**_ or _**/usr/local/bin**_ folder. * Rename the file to _**nodejs12.x**_ ## Getting Started - Hello World * Copy `greengrassExamples/HelloWorld` folder to your workspace. * Create a folder `node_modules` under `HelloWorld` folder. * Unzip aws-greengrass-core-sdk-js.zip into the folder. It should create a folder HelloWorld/node_modules/aws-greengrass-core-sdk * Use NPM to install the required dependency, cbor. `npm i cbor@5.0.1`. * Zip up the content of HelloWorld folder so that the index.js is on the top of the zip file structure. * Go to AWS Lambda Console. * Create a new function. * Choose the Runtime as `Node.js 12.x` * Upload the zip file in _Lambda function code_ section. * Handler is _index.handler_ * Choose any role as the role is not used within Greengrass. * After creating the function, publish the Lambda. * Create an Alias and point to the Published version (not $LATEST). * Go to your Greengrass Group and add the Lambda under Lambdas section. * Click on the Lambda and change the _Lambda lifecycle_ to _Make this function long-lived and keep it running indefinitely._ * Add a Subscription with the following configuration: * Source: Lambda which you just created and added to the group * Target: IoT Cloud * Topic: hello/world * Deploy. A message from your Lambda should be published to the topic _hello/world_ in the cloud every 5 seconds. You can check this by going to AWS IoT's _Test_ page and subscribing to topic _hello/world_. ## Including aws-greengrass-core-sdk with your function Unzip the SDK into your node_modules folder of your function. This should create a aws-greengrass-core-sdk folder which includes the SDK. ## Logging in NodeJS Lambdas Your _console.log_ operation will be logged as INFO. A _console.error_ operation will be logged as ERROR. Currently, our NodeJS SDK only allows you to log at INFO or ERROR level only. ## Supported Datatypes From GGC version 1.5, you can send both JSON and binary data as a payload when you invoking other Lambdas or publishing a message using IotData service. In order to make your lambda be able to handle binary payload, you need to configure the lambda in Greengrass console to mark it using binary input payload so that GGC can know how to deal with the data. ## Supported Context In Greengrass, you can send a context object in a JSON format to be passed to another Lambda that is being invoked. The context format looks like this: `{ custom: { customData: 'customData', }, }`
GGC Version | Compatible SDK Versions |
---|---|
1.0.x-1.6.x | 1.0.x-1.2.x |
1.7.x-1.8.x | 1.0.x-1.3.x |
1.9.x | 1.0.x-1.4.x |
1.10.x | 1.0.x-1.6.x |
1.11.x | 1.0.x-1.7.x |