Coding my first Server

Todays Learning: 
Today I had a lot to learn and it gave me a glimpse of how web works behind the scenes and what local host is and how to make your system as a server. 

1. Express is a server side javascript framework used along with node. 
2. A server with Express is created via the following steps: 
. Create a directory
. Create index.js file
. Initialise npm
. Install express package
. Write server side logic
.start server. 
3. Https - protocol used between the communication of client side and server side.
4. GET, POST, PUT, PATCH and DELETE
5. Used Express to create my first server where I just displayed Hello World with app.get request!!
6. HTTP status codes.

Popular posts from this blog

The third parameter - Event bubbling and Event capturing

Binary Sreach Algorithm : Optimized way to get the index of the mid element

Abstract classes