Skip to content

A simple Node.js-based microservice using API Gateway and Lambda

License

Notifications You must be signed in to change notification settings

jenseickmeyer/todo-app-nodejs

Repository files navigation

todo-app-nodejs

This is a simple Serverless application to show the project structure based on the blog post Project Structure for Serverless Microservices.

Build & Deploy

The script deploy.sh can be used to deploy the application to any AWS account.

As a prerequisite it is necessary to install and configure the AWS CLI. Additionally, it needs a S3 bucket in the same AWS region in which the application will be deployed. The name of the S3 bucket needs to be configured in the Variable S3_BUCKET in this script.

The application can be packaged and deployed by running

source deploy.sh

If deployment is finished successfully the script prints out the URL for the API Gateway endpoint end exports it to the environment variable API_GATEWAY_URL.

Test

After deploying the application the REST API endpoints can be tested via curl.

The following command lists all the tasks

curl -i $API_GATEWAY_URL

Create task

curl -i \
     -H "Content-Type: application/json" \
     -d '{ "title": "Task 1", "description": "Lorem ipsum dolor est" }' $API_GATEWAY_URL

Delete task with ID 25aa0b59-b845-4c43-9e6e-9673488c6a50

curl -i -X "DELETE" $API_GATEWAY_URL/25aa0b59-b845-4c43-9e6e-9673488c6a50

About

A simple Node.js-based microservice using API Gateway and Lambda

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published