Posts

Showing posts from March, 2020

React VS Angular

History of Angular and React Angular is a language for JavaScript, written in TypeScript. It has been developed and maintained by Google, and is defined on Angular's web page as "Superheroic JavaScript MVWFramework." When first released in September 2016, Angular (version 2 and above) is a full rewrite of AngularJS (announced in October 2010).Around the time of writing, the most recent big update is version 6. Google AdWords, one of Google's most significant projects, uses Angular – and Angular will possibly be around for some time. React is a library of JavaScript which Facebook develops and maintains. It was released in March 2013 and is described as "a JavaScript user interface library." At Facebook, Respond is used even more than Angular is at Google if there is any hint of how much Facebook is betting on this technology. You may also infer from this metric that React will be around for a very long time to come. Architecture of react and Angular ...

Node.js VS Java And Usage Of Node.js : week 3

      Node.js is a server side framework which is used to build network applications and servers with JavaScript. Using Node.js for back end development, both client side and sever side could be developed as a JavaScript stack. Node.js is not a framework, it's a development platform.       Java is a class based, object oriented language, derived from C++. Java was developed in sun Microsystems Inc in 1991. Java is a simple programming language. Writing, compiling and debugging a program is easy in java. Java has it's own libraries, plugins, API's, run time environment and virtual machine. Java is an object - oriented language, derived from C++. Node.js is a framework written in C, C++, and JavaScript. Java is used to build complex web based, highly concurrent applications. CPU intensive tasks which requires a huge computational power can be handled by Java. Node.js is used to develop small sized projects. I/O bound operations like real time chat, medi...