# Hello World Node ## What is this function? This function is the standard Node Hello World function from the Greengrass documentation. The output has been modified slightly so that it adds some environment variables to its output. These environment variables are added to the environment of all Lambda functions created with GG-provisioner. They are: * `GROUP_ID` - The group ID of the current Greengrass group (e.g. `fe8a6893-c88a-4ba4-9016-8a1d61a7b2a7`) * `AWS_IOT_THING_NAME` - The thing name of the current Greengrass Core * `AWS_IOT_THING_ARN` - The thing ARN of the current Greengrass Core ## What does the output look like? `${AWS_IOT_THING_NAME}` is the name of the thing associated with your Core. Every 5 seconds a message is sent on `${AWS_IOT_THING_NAME}/hello/world` topic that looks like this: ``` { "message": "Hello world! Sent from Greengrass Core running on platform: linux-4.4.0-1052-aws using NodeJS" } ```