├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── client.js ├── index.html ├── index.js ├── iot.js ├── lib ├── api_gateway_form_mapping_template.txt ├── get.js └── save.js ├── package.json ├── style.css └── test ├── get.test.js ├── index.test.js └── save.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/README.md -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/client.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/index.js -------------------------------------------------------------------------------- /iot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/iot.js -------------------------------------------------------------------------------- /lib/api_gateway_form_mapping_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/lib/api_gateway_form_mapping_template.txt -------------------------------------------------------------------------------- /lib/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/lib/get.js -------------------------------------------------------------------------------- /lib/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/lib/save.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/style.css -------------------------------------------------------------------------------- /test/get.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/test/get.test.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/save.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/aws-lambda-iot-chat/HEAD/test/save.test.js --------------------------------------------------------------------------------