orangejellyfish / serverless-starter

🎬 A production-ready Serverless Framework starter kit for Node.js on AWS Lambda
MIT License
26 stars 4 forks source link
aws aws-lambda javascript serverless serverless-framework

serverless-starter

An opinionated starter kit by orangejellyfish for Serverless framework apps running in AWS. Built to be future-proof. Inspired by and adapted from the excellent serverless-babel-starter project by Postlight.

Features

Usage

You can use the Serverless CLI to scaffold a new project from this starter kit:

serverless create --template-url https://github.com/orangejellyfish/serverless-starter --path your/local/path

Known issues

WARNING: More than one matching handlers found for 'src/functions/hello/index'. Using 'src/functions/hello/index.js'.

This warning is logged by serverless-webpack when bundling the Lambda function code. It happens because the plugin detects another file in the same directory with a similar name. The other file is the unit test file. The warning can be safely ignored. See this issue for more information.