/WT_Assignment_UE20CS204

This repository will contain all the solution files for Unit-Wise Assignments

Primary LanguageJavaScript

WT_Assignment_UE20CS204

UNIT - 1 and UNT - 2

These solutions have basic html / css / javaScript files attached so just download them(or Clone them) and run those files.

UNIT-3 , UNIT - 4 and UNIT - 5

When you download the files make sure to run
npm install OR npm i ---> to install are required Dependencies

To run ---> node <fileName>.js OR nodemon <fileName>.js

I have used POSTMAN to perform GET / POST / PUT Requests

Note : Styling can be improved as per individual's interest.

For those of you who have no idea of what POSTMAN is.. Scroll Down ( 5 - 10 min read)

POSTMAN TUTORIAL

You can Download POSTMAN From here : https://www.postman.com/downloads/

So, POSTMAN is an platform which used to test , create and playaround with API's. This tool / platform comes in handy when we want to test API's . It accelerates the API Lifecycle which helps us to create better yet faster API

Simple Steps to start working with POSTMAN :

1.First Type in the URL or the API END POINT that we want to test

2.Select the HTTP protocol

3.Click on send

Yes its that Simple

Now Lets take an Example
GET REQUEST

image

POST REQUEST

image

An Important point to be noted here is I have changed the protocol to POST HERE
Though I am not sending Any data to the server does not mean my POST request is invalid , It still is VALID !!!
You can hence create more api end points and choose appropriate HTTP Protocols and play-around with API using POSTMAN

Note : This is only for ODD SRN's . EVEN SRN's can also use this as a reference and do the same.