In this Blog I am going write about HTTP Messages. HTTP Messages represent how data exchanged between server and client. There are two main message types in this section, They are requests and responses. The simple description is, client’s request triggers an action in the server and returns the response for the particular request. HTTP messages consist of textual information encoded in ASCII, which spread over several lines. Those messages were sent publicly across the link in HTTP/1.1, and earlier versions of the protocol. In HTTP/2, the message that used to be human-readable has been split into HTTP frames, enabling optimization and efficiency improvements.Continue reading “HTTP MESSAGES”
Category Archives: Uncategorized
Babel in React
What is Babel ? It’s a JavaScript compiler includes the ability of compiling JSX into JavaScript. It also able to do many powerful things. Installing Babel To use Babel we need to install Babel-Core which is the Babel’s npm module’s name. Here the command to install Babel will be differed from the way of installingContinue reading “Babel in React”
React Component Life Cycle
React Component Components are the building blocks of any React app, and many of these would feature a typical React app. Simply put, a component is a JavaScript class or function that optionally accepts inputs i.e. properties(props) and returns a React element describing how a UI (User Interface) segment should appear Specially components are reusable,Continue reading “React Component Life Cycle”
Event Loop In Node.js
Node.js made JavaScript so valuable by adding most important features that are not available in JavaScript. Without node we can’t run JavaScript in our local pc. We have to install node.js first before we are starting to work with JavaScript but we can run JavaScript in some platforms without node.Node.js is a platform based onContinue reading “Event Loop In Node.js”
NOSQL
Database plays a prominent role in application, data means a lot for an enterprise application. Before emerging of NOSQL, Relational Schema used widely to maintain and process database in application. But developer faced lots of hard situations in Relational Schema. Why NOSQL ? NOSQL design to run on clusters efficiently than Relational Schema It’s anContinue reading “NOSQL”
Introduction To Frame Works
Introduction JavaScript is a well known web development tool for a developer. Java Scripts supports both front end and back end of web application. While most of the languages are Object Oriented language but JavaScript is an Object Based Language. In this Blog we are going to discuss about the most trending JavaScript frameworks usedContinue reading “Introduction To Frame Works”