AWS Serverless Project - Part 2

Lets create one more project in our serverless-projects directory.

Clone the repo which contains 2 branches , we are having our code in our dev branch so lets move to that branch

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

add serverless user name to connect using

serverless --org=aasifa

We need necessary modules to deploy the app

npm install

you can see node modules added. Now deploy the application

sls deploy

We will get the endpoint URLs for get (for the response) post ( to insert the data) and put ( to update the data)

We will be using POSTMAN tool . It is a simple Graphic User Interface for sending and viewing HTTP requests and responses.

add all the request and click send for the response. The data will be updated.