1.0.0 • Published 5 years ago

serverless-aws-node-starter v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

serverless-aws-node-starter

Build Status

Modern AWS Serverless Starter Kit built on top of the Serverless Framework, giving you support for:

Requirements

Install

# If you don't already have the serverless cli installed, do that
npm install -g serverless

# Use the serverless cli to install this repo
serverless install --url https://github.com/dczepierga/serverless-aws-node-starter --name <your-service-name>

# cd into project and set it up
cd <your-service-name>

# Install dependencies
npm install

Now you only need to change service name in following files:

Deploy

If you've already set up your default AWS credentials:

npm run deploy

By default script will deploy to dev stage and eu-west-1 region. You can deploy to different stage or region by passing command line arguments:

npm run deploy -- --stage test --region us-east-1

Development

Local dev server - simulate API Gateway

npm start

By default local dev server will use dev stage and eu-west-1 region. You can start local dev server for different stage or region by passing command line arguments:

npm start -- --stage test --region us-east-1

For more options check serverless-offline plugin documentation - Usage and command line options

Creating and deploying new functions

Create function with unit tests

The starter Hello World function can be found at ./src/handler.js with unit tests './src/handler.js`. There you can find a basic function that returns success response with body and simple unit test for this functionality.

This is all basic Serverless. If you've never used it, be sure to get familiar with their docs. More information about writing unit tests using Jest can be found in their guide.

Create configuration

The starter Hello World configuration can be found at src/handler.yml and at serverless.yml in the functions section (linked file).

More details about function configuration can be found in the AWS functions guide

IMPORTANT Remember to add all required files in package/include section. Without this your function may not work after deploy to the cloud!

Test and diagnose your function

You can run unit tests using following command:

npm test

More options is available in Jest docs - CLI Options.

If you want to diagnose you function and local dev webserver is not enough for you, then you can invoke the function with logs - more details you can find in the Serverless docs - AWS Invoke.

Commit your code

Add all files to stage and run:

npm run commit

You'll be prompted to fill out any required commit fields at commit time.

API documentation

Documentation for AWS API Gateway is provided by serverless-aws-documentation plugin and exported to Swagger UI format.

To open deployed to AWS API Gateway documentation in Swagger UI, you must run:

npm run docs

Cleanup

npm run detroy

By default script will cleanup dev stage and eu-west-1 region. You can cleanup different stage or region by passing command line arguments:

npm run detroy -- --stage test --region us-east-1