Posts

Showing posts from April, 2021

HTTP Methods

Image
  What is HTTP Verb? HTTP verbs are technically correct terms of request, and it communicates the action a user intends to take on specific resources related to these verbs and methods. HTTP password processing is very common. GET, POST, PUT, PATCH, DELETE, OPTIONS, and HEAD are the key HTTP most commonly used verbs used with RESTful services. HTTP GET The GET request was used to obtain information on resources and is not subject to any other means. The GET API should be malicious. This simply means that every API that makes similar requests should return the same result until the resource status of the server is changed. GET requests are made securely because they do not change the status of the resource. Example URI - HTTP GET http://www.abc.com/users HTTP POST  The HTTP POST method is used to create relevant resources. POST request methods are insecure. In this case, when two similar post requests are made, there may be two different resources related to the same informatio...

What is React?

Image
What is React? React is a JavaScript library for building a fast and interactive user interface for the web as well as a mobile application. It is an open-source, reusable component-based front-end library. In a model view controller architecture, React is the "view" which is responsible for the how the app looks and feels.  A JavaScript library for building user interfaces Declarative Technology stack agnostic Component-based Architecture  Not a framework Focus on Ui Rich Ecosystem Why learn React? Created and maintained by Facebook  More than 100k starts on GitHub Huge community in-demand skillset React History Design  by  Jordan Walke First deployed on facebook's newsfeed  in 2011 Open-sourced at JSConf US in May 2013 Designed for speed, simplicity, and scalability React Vocabulary One-way data flow JSX Components State Props Virtual DOM Element Flux/Redux  Routing Create a New React App Create React App could be a comfortable environment for learni...