This template has been superceded by serverless-template
Template repository for Serverless AWS Lambda apps using the Serverless Framework
Run fast with a new AWS Lambda serverless project using a quick and dirty TypeScript stack!
- Framework
- Testing
- Create a new repository using this as a template
npm i
to get the dependencies installed- Modify the
package.json
and this readme to fit your project - Run the local build with
npm run serve
! (alternativelyserve:watch
will run with nodemon)
- Set your profile, role, region, service name, and domain info in
serverless.yml
- Run
npm run deploy
to deploy to a dev stage, ornpm run deploy:production
to deploy to production.
- Personal preference. I find Jest clunky in comparison, but it has its merits. Feel free to swap it out.
- I like clean code, and personally it forces me to write more readable code. The style is automagically enforced by Prettier anyways.
- Write better docs.