Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/dinushchathurya/aws-node-http-api-project
- Owner: dinushchathurya
- Created: 2022-01-01T14:10:48.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-02T07:08:51.000Z (about 3 years ago)
- Last Synced: 2024-12-14T20:45:28.612Z (19 days ago)
- Topics: aws-lambda, aws-lambda-node, chathurya, dinush, dinushchathurya, lambda, serverless, serverless-framework
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 | |