A Serverless starter that adds ES7 syntax, serverless-offline, environment variables, and unit test support. Tahnks to Serverless Stack guide.
Serverless Node.js Express Starter uses the serverless-webpack plugin, Babel, serverless-offline, and Jest. It supports:
- ES7 syntax in your handler functions
- Use
importandexport
- Use
- Package your functions using Webpack
- Run API Gateway locally
- Use
serverless offline start
- Use
- Support for unit tests
- Run
npm testto run your tests
- Run
- Sourcemaps for proper error messages
- Error message show the correct line numbers
- Works in production with CloudWatch
- Automatic support for multiple handler files
- No need to add a new entry to your
webpack.config.js
- No need to add a new entry to your
- Add environment variables for your stages
To create a new Serverless project.
$ serverless install --url https://github.com/achuansar88/serverless-express-es6 --name my-projectEnter the new directory
$ cd my-projectLambda Layers feature at re:Invent 2018, is used to promote component sharing and keeps the core function package as small as possible. Refer https://medium.com/the-apps-team/how-to-add-nodejs-library-dependencies-in-a-aws-lambda-layer-with-serverless-framework-d774cb867197
$ mkdir -p layer/nodejs
$ cd layer/nodejs
$ npm install To run unit tests on your local
$ npm testTo run a function on your local
$ serverless invoke local --function appTo simulate API Gateway locally using serverless-offline
$ serverless offline startRun your tests
$ npm testWe use Jest to run our tests. You can read more about setting up your tests here.
Deploy your project
$ serverless deployDeploy a single function
$ serverless deploy function --function appTo add another function as a new file to your project, simply add the new file and add the reference to serverless.yml. The webpack.config.js automatically handles functions in different files.
To add environment variables to your project
- Rename add
env.yml. - Add environment variables for the various stages to
env.yml. - Uncomment
environment: ${file(env.yml):${self:provider.stage}}in theserverless.yml. - Make sure to not commit your
env.yml.