├── .eslintrc.yml ├── .gitignore ├── README.md ├── docs ├── apple-320x240.png ├── apple.png ├── architecture.png ├── bbc-320x240.png ├── bbc.png ├── reddit-320x240.png ├── reddit.png ├── youtube-320x240.png └── youtube.png ├── events ├── create.json └── put_object.json ├── handler.js ├── output └── template.yml ├── package.json ├── phantomjs ├── phantomjs_linux-x86_64 ├── phantomjs_osx └── screenshot.js ├── serverless.yml └── test.js /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .serverless 2 | node_modules 3 | .env 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/README.md -------------------------------------------------------------------------------- /docs/apple-320x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/apple-320x240.png -------------------------------------------------------------------------------- /docs/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/apple.png -------------------------------------------------------------------------------- /docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/architecture.png -------------------------------------------------------------------------------- /docs/bbc-320x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/bbc-320x240.png -------------------------------------------------------------------------------- /docs/bbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/bbc.png -------------------------------------------------------------------------------- /docs/reddit-320x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/reddit-320x240.png -------------------------------------------------------------------------------- /docs/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/reddit.png -------------------------------------------------------------------------------- /docs/youtube-320x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/youtube-320x240.png -------------------------------------------------------------------------------- /docs/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/docs/youtube.png -------------------------------------------------------------------------------- /events/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/events/create.json -------------------------------------------------------------------------------- /events/put_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/events/put_object.json -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/handler.js -------------------------------------------------------------------------------- /output/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/output/template.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/package.json -------------------------------------------------------------------------------- /phantomjs/phantomjs_linux-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/phantomjs/phantomjs_linux-x86_64 -------------------------------------------------------------------------------- /phantomjs/phantomjs_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/phantomjs/phantomjs_osx -------------------------------------------------------------------------------- /phantomjs/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/phantomjs/screenshot.js -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/serverless.yml -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdgraaf/serverless-screenshot/HEAD/test.js --------------------------------------------------------------------------------