├── .gitignore ├── README.md ├── functions └── posts │ ├── event.json │ ├── handler.js │ ├── s-function.json │ └── s-templates.json ├── package.json ├── s-project.json └── s-resources-cf.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abalone0204/serverless-demo-with-dynamodb-node/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abalone0204/serverless-demo-with-dynamodb-node/HEAD/README.md -------------------------------------------------------------------------------- /functions/posts/event.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /functions/posts/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abalone0204/serverless-demo-with-dynamodb-node/HEAD/functions/posts/handler.js -------------------------------------------------------------------------------- /functions/posts/s-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abalone0204/serverless-demo-with-dynamodb-node/HEAD/functions/posts/s-function.json -------------------------------------------------------------------------------- /functions/posts/s-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abalone0204/serverless-demo-with-dynamodb-node/HEAD/functions/posts/s-templates.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abalone0204/serverless-demo-with-dynamodb-node/HEAD/package.json -------------------------------------------------------------------------------- /s-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abalone0204/serverless-demo-with-dynamodb-node/HEAD/s-project.json -------------------------------------------------------------------------------- /s-resources-cf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abalone0204/serverless-demo-with-dynamodb-node/HEAD/s-resources-cf.json --------------------------------------------------------------------------------