├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── carbon-now.json ├── package.json ├── serverless.yml ├── src ├── code.ts ├── embeds.ts ├── getChrome.ts ├── optimizeImage.ts ├── screenshotCode.ts ├── socialCard.ts ├── takeScreenshot.ts ├── types.ts ├── uploadScreenshot.ts └── util.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/README.md -------------------------------------------------------------------------------- /carbon-now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/carbon-now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/package.json -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/serverless.yml -------------------------------------------------------------------------------- /src/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/code.ts -------------------------------------------------------------------------------- /src/embeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/embeds.ts -------------------------------------------------------------------------------- /src/getChrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/getChrome.ts -------------------------------------------------------------------------------- /src/optimizeImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/optimizeImage.ts -------------------------------------------------------------------------------- /src/screenshotCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/screenshotCode.ts -------------------------------------------------------------------------------- /src/socialCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/socialCard.ts -------------------------------------------------------------------------------- /src/takeScreenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/takeScreenshot.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/uploadScreenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/uploadScreenshot.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/src/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swizec/lambda-screenshot-as-a-service/HEAD/yarn.lock --------------------------------------------------------------------------------