├── README.md └── my-service ├── .gitignore ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/a-crash-course-on-serverless-with-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /my-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/a-crash-course-on-serverless-with-nodejs/HEAD/my-service/.gitignore -------------------------------------------------------------------------------- /my-service/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/a-crash-course-on-serverless-with-nodejs/HEAD/my-service/handler.js -------------------------------------------------------------------------------- /my-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/a-crash-course-on-serverless-with-nodejs/HEAD/my-service/package-lock.json -------------------------------------------------------------------------------- /my-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/a-crash-course-on-serverless-with-nodejs/HEAD/my-service/package.json -------------------------------------------------------------------------------- /my-service/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/a-crash-course-on-serverless-with-nodejs/HEAD/my-service/serverless.yml --------------------------------------------------------------------------------