Posts

ExpressJS

Image
What is Express JS                                This is Node.js web application frameworks which provides robust set of features to Develop Web and Mobile Applications and RESTful APIs . Among these features there are several highlighted   Core Features.                Features Of Express JS                               High Performance                             Can Setup middlewares to Response to HTTP Requests.                              Re-usability                              Robust Routing                              can gain more features via plugins               Installing  Express JS                             First have to install Express framework globally by using npm commands, using this bellow command save the installation locally in @node_modules and creates a directory express inside @node_modules                              npm install express --save                                   There are three more module, in order to work with

RESTful Services

Image
What is RESTful Services                               A ctually this is a protocol RE presentational S tate T ransfer protocol to the C lient and S erver communication. Basically resources are identify by a URL. REST is a way to identify resources which appends on a particular environment. There are key elements in RESTful implementation.  1. Resources           This is use for give some commands using an URL           web application url :- http://www.testServer.com           command through the url :- http://www.testServer.com/students/001                                                               (Give the details of students whose number is 001 ) 2. Request Verbs            These are the verbs that use to define the operation type of the request           GET - get the details from the web application           POST - create a new entry and add new object to the web application (eg- new Student )           PUT - update existing

BABLE Transpiler

Image
                   Babel is the most popular transpiler for javascript.This is an open source transpiler. Now a days ES6+ (ECMA Script) is the javascript version. Some browsers still can read old javascript versions only. Eg:- Internet Explorer. If we used latest version of javascript for the program that might not executable in those older version browsers.                    In order to solve that this Babel transpiler convert Latest version javascript in to old javascript version, Some companies use Babel Instagram Discord Yahoo GitLab Conversion Example Arrow Function in to javascript function                 //Latest Version CalculateValues = (x,z) =>{ const sumIs = x+z; return sumIs; } //After Transpiling function CalculateValues(x,z){ var sumIs = x+z; return sumIs; } 

ReactJS

Image
What is React                   React is a JavaScript Library use to develop User Interfaces.Using this library we can isolate complex user interface in to a isolated part called "Component", within this component we can manage interface. What's are the differences between state and props ?                   Props                      "Props" is a shorten form word in order to describe properties.These properties are useful when we are going to transfer data among one component to another component. This transaction should be done form Parent component to Child component only, This is a noticeable feature in react called "one-way data flow" and also these props are immutable.                   States                       This this is a "different game", because this "states" is belong to the particular component. These states can be change. In order to get data from the state and update state there are two met

Description about "NodeJs"

Image
What is NodeJS ?                    Actually this is the runtime environment for the JavaScript, This runtime environment built on Google Chrome's V8 engine.This also an opensource, which is used to implement Server Side Scripting.The foundation of this language is based on C++,C,JavaScript. Because of the cross platform usage NodeJS is famous among developers. There are several NodeJS Versions which are launched before, But now a days V13.8.0 is the latest updated version.                    Commonly known as a lightweight environment, Because in java there are several threads which are running background, But when we are considering this there are no any Multi Threading concept.But there is an event loop in order to done process.                     That's what made this lightweight.

What is the Not Only SQL database

Image
What is this Database ?                       NoSQL also known as the Non-relational or Distributed Databases. This was introduced by Carlo Strozzi in 1998, As describe in this name there are no any sql included to this NoSQL. So.. you wonder, then how are we suppose to store data without SQL.                       we don't  need tables to store data in this databases. But there are four basic types in this database.Those four basic types allows to handle huge data and manage the traffic of it. Four basic types are, Column-Based Store  :- HBase , Cassandra Key-Value Store  :-   Riak ,  Amazon S3 Document-Based Store  :-  CouchDB ,  MarkLogic Graph-Based Store  :-  Neo4J This databases are mostly used in industry,Because there have so many advanced data handling capacity and capability of huge traffic handling. Also MongoDB is the most famous NoSql Database in industry nowadays, Because this is an Opensource Database. and ebay sites are hosted in this d