├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── README.md ├── assets └── deploy-demo.gif ├── package.json ├── prettier.config.js ├── serverless.component.yml ├── src ├── _src │ └── handler.js ├── package.json ├── serverless.js └── utils.js ├── templates └── aws-lambda-starter │ ├── .gitignore │ ├── serverless.template.yml │ ├── serverless.yml │ └── src │ └── handler.js └── tests ├── integration.test.js ├── src └── handler.js └── utils.js /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/README.md -------------------------------------------------------------------------------- /assets/deploy-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/assets/deploy-demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/prettier.config.js -------------------------------------------------------------------------------- /serverless.component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/serverless.component.yml -------------------------------------------------------------------------------- /src/_src/handler.js: -------------------------------------------------------------------------------- 1 | module.exports.handler = async () => { 2 | return 'Hello Serverless' 3 | } 4 | -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/src/package.json -------------------------------------------------------------------------------- /src/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/src/serverless.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/src/utils.js -------------------------------------------------------------------------------- /templates/aws-lambda-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/templates/aws-lambda-starter/.gitignore -------------------------------------------------------------------------------- /templates/aws-lambda-starter/serverless.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/templates/aws-lambda-starter/serverless.template.yml -------------------------------------------------------------------------------- /templates/aws-lambda-starter/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/templates/aws-lambda-starter/serverless.yml -------------------------------------------------------------------------------- /templates/aws-lambda-starter/src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/templates/aws-lambda-starter/src/handler.js -------------------------------------------------------------------------------- /tests/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/tests/integration.test.js -------------------------------------------------------------------------------- /tests/src/handler.js: -------------------------------------------------------------------------------- 1 | module.exports.handler = () => 'success' 2 | -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda/HEAD/tests/utils.js --------------------------------------------------------------------------------