Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dinushchathurya/aws-node-http-api-project

This template demonstrates how to make a simple HTTP API with Node.js running on AWS Lambda and API Gateway using the Serverless Framework.
https://github.com/dinushchathurya/aws-node-http-api-project

aws-lambda aws-lambda-node chathurya dinush dinushchathurya lambda serverless serverless-framework

Last synced: 18 days ago
JSON representation

This template demonstrates how to make a simple HTTP API with Node.js running on AWS Lambda and API Gateway using the Serverless Framework.

Awesome Lists containing this project

README

        

## Serverless Framework Node HTTP API on AWS

This template demonstrates how to make a simple HTTP API with Node.js running on AWS Lambda and API Gateway using the Serverless Framework.

## API Endpoints

| Endpoint | Method | Body |
| ---------------- |:--------:|:-----------------------:|
| {url} | POST |{ "todo": "Test ToDo" } |
| {url}/todos | GET | |
| {url}/todo/{id} | GET | |
| {url}/todo/{id} | PUT |{ "completed": "true" } |
| {url}/todo/{id} | DELETE | |