SlideShare a Scribd company logo
1 of 4
Download to read offline
International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169
Volume: 5 Issue: 7 591 – 594
_______________________________________________________________________________________________
591
IJRITCC | July 2017, Available @ http://www.ijritcc.org
_______________________________________________________________________________________
To implement an Analyzer for evaluation of the performance of Recent Web
Development Frameworks
Phule Vidya G.
PG Student: of Computer Science and Engineering at
SKNSCOE, Pandharur
phulevg@gmail.com
Pingale S. V.
HOD: Computer Science and Engineering at SKNSCOE,
Pandharur
sub.pingale83@gmail.com
Abstract— Everything you see, click, and interact with on a website is the work of front-end web development. Client-side
frameworks and scripting languages like JavaScript and various JS libraries like AngularJS, jQuery, Node.js, etc. have made it
possible for developers to develop interactive websites with performance improvement. Today the use of web is raised to such an
extent that web has evolved from simple text content from one server to complex ecosystem with various types of contents spread
across several administrative domains. This content makes the websites more complex and hence affects user experience. Till now
efforts has been done to improve the performance at server side by increasing scalability of back-end or making the application
more efficient. The performance of client side is not measured or just tested for usability. Some widely used JavaScript
benchmark suites for measuring the performance of web browsers. The main focus of such a benchmark is not to measure the
performance of a web application itself, but to measure its performance within a specific browser. There is wide variety of
literature being available to measure the complexity of web pages and determining the load time. The aim behind our project is
that to characterize the complexity of web pages built using different web development technologies like AngularJS, jQuery,
AJAX (Client side web development technologies) so as to compare and analyze the usage of proper web development technique.
In this paper we have used AngularJS as a case study to evaluate its performance against other frameworks like jQuery and AJAX.
Keywords- AngularJS;Browsers; jQuery;, AJAX; MVC; SPA; JSON.
__________________________________________________*****_________________________________________________
I. INTRODUCTION
Now a day's it's almost impossible to conceive a life
without internet. The World Wide Web (WWW) as the largest
global information media store through which user can share,
read, and writes data through computers connected with
internet. As the usage of web is increased to such an extent
that web has evolved from simple text content from one server
to complex ecosystem. Web site today fetches content not only
from servers hosted by its providers, but also from a range of
third-party services like advertising agencies, content
distribution networks (CDNs), and analytics services [1]. Also,
rendering a single Web page today involves fetching several
objects from multiple servers under different administrative
domains.
Because of these factors web pages becomes more
complex, hence the user experience gets degraded. With the
increasing diversity of client platforms for accessing the Web,
it is important for browser developers to identify the aspects of
Web page complexity that impact use experience [1]. They
need tools and techniques to evaluate the impact of these
services on users.
There is a wide variety of literature being available to
measure the complexity of web pages and determining the
load time. Here our aim is to provide the Analyzer tool which
is capable of profiling web page complexity against certain
performance metrics actually impacting web page
performance. The benefits of this work will be complexity will
be reduced to some extent using proper developmental
technique hence load time will get reduced and the user
experience will be better.
Now-a-days JavaScript and its libraries provide interactive
approach to static web pages [2]. Here we have taken
AngularJS, jQuery and AJAX as case studies for comparison
as they are widely used for web application development.
II. RECENT WEB DEVELOPMENT FRAMEWORKS OF
JAVASCRIPT USED IN PAPER
This paper takes into account latest widely used javascript
frameworks viz. AngularJS, jQuery and AJAX. They are
introduced in nut-shell as below.
A. AngularJS
AngularJS is a JavaScript framework and specifically
designed to create SPAs. It is a library written in JavaScript.
AngularJS provides the web application with Model-View
Controller (MVC) capability. In contrast to the traditional
MVC architecture like SpringMVC, where the website is
rendered from the server side, with Angular the view is
generated in the browser using its Model which holds all the
required data [5]. The controller takes care of the interactions
between the HTML page and Model. The upside here is, there
is no server side calls involved in these operations and
everything is done on the client side with cached data.
AngularJS abstracts the server calls to a separate layer to avoid
code redundancy across multiple views for a gateway built
International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169
Volume: 5 Issue: 7 591 – 594
_______________________________________________________________________________________________
592
IJRITCC | July 2017, Available @ http://www.ijritcc.org
_______________________________________________________________________________________
with pure HTML5, JavaScript and REST services. AngularJS
manipulates the DOM automatically. Because of that the
burden of developers gets reduced as view automatically gets
updated when data changes. It makes the view lightweight, by
decoupling the view rendering from the server side.
B. Single Page Applications
A single-page application (SPA) is a web application
or web site that fits on a single web page with the goal of
providing a user experience similar to that of a desktop
application. In an SPA is retrieved with a single page load, or
the appropriate resources are dynamically loaded and added to
the page as necessary, usually in response to user actions.
Interaction with the single page application often involves
dynamic communication with the web server behind the
scenes [6].
In nutshell, how SPA work can be represented as
follows.
1. Browser initiates a request to server
2. Server sends a webpage (consists of HTML and
JavaScript)
3. Browser loads the entire webpage
4. User clicks on a link (initiates a new request and asks for
the information that is only going to need to update the
webpage)
5. Server responds with JSON data
6. Browser loads the JSON data into the existing webpage
to update it.
This mode of working significantly makes the
processing faster and efficient thereby improving the
performance of the page.
C. jQuery
jQuery is a cross-platform JavaScript library designed
to simplify the client-side scripting of HTML. jQuery is one of
the widely used JavaScript libraries today [2]. The workflow
behind the scenes can be represented as shown in Figure1.
Figure 1. JQuery: How it works
jQuery, at its core, is a DOM (Document Object
Model) manipulation library. The DOM is a tree-structure
representation of all the elements of a Web page and jQuery
simplifies the syntax for finding, selecting, and manipulating
these DOM elements. jQuery also provides a paradigm for
event handling that goes beyond basic DOM element selection
and manipulation. The event assignment and the event call
back function definition are done in a single step in a single
location in the code. jQuery also aims to incorporate other
highly used JavaScript functionality.
D. Ajax
Ajax (Asynchronous JavaScript and XML) is a set of
web development techniques at client side to create
asynchronous Web applications. With Ajax, web applications
can send data to and retrieve from a server asynchronously (in
the background) without interfering with the display and
behavior of the existing page [2]. Ajax allows for web pages,
and by extension web applications, to change content
dynamically without the need to reload the entire page. In
practice, modern implementations commonly substitute JSON
for XML as shown in Figure 2.
Figure 2. AJAX Work flow
Ajax is not a technology, but a group of technologies.
HTML and CSS are used in combination to mark up and style
information. The DOM is accessed with JavaScript to
dynamically display the information presented.
Now for discussion about the previous work done to
analyze the performance of web technologies and their
evaluation, not a single application is available at present.
Literature is available to measure the complexity of web pages.
Browsers built tools are used to measure the loading time by
analyzing log files. Also the performance for server side web
technologies is measured, while our approach is to measure
and evaluate the client side web technologies performance.
III. APPROACH
The process to be followed for the work requires performance
metrics to be defined for the comparison of frameworks. For
web pages the metrics that affect user experience can be
outlined as below.
International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169
Volume: 5 Issue: 7 591 – 594
_______________________________________________________________________________________________
593
IJRITCC | July 2017, Available @ http://www.ijritcc.org
_______________________________________________________________________________________
A. Page Load Time
Loading time of a webpage is the time required to
request and render the entire requested web-page in the
browser of client.
B. Transition Time
Transition time defines the time required to make a
transition from one webpage to another by visiting a link.
C. Throughput
Throughput is characterized by No. of jobs completed
per second [3]. Here in our context we'll redefine it as No. of
requests processed per second.
D. Response Time
Response time (in case of AJAX)-i.e. RTT i.e. time
required for request to travel from client to server and back
again.
E. Resource Consumption
Resource consumption is the amount of hardware
resources used at a certain point in time.
F. Bandwidth Or Data Consumption
Bandwidth expresses the maximum data flow in and
out of a computer system.
G. Complexity Of Webpage
It can be calculated by calculating No. of objects
downloaded, Size of the objects downloaded and No. of
distinct non origin servers contacted by the webpage [1].
The empirical results generated will provide the developer
with detailed information about performance (execution
speed) at client side.
H. User Experience
User experience is the important criterion that
determines the success of any technology. AngularJS clearly
proves to this, in case of Web Applications or the websites that
run on the notion of manipulation of information, typical
example of which is an ecommerce portal (Paytm) [2].Also
AJAX has been proven best in cases where data updates
require tones of data transfer to and from browser to server. In
that case AJAX provided partial update feature
(XMLHttpRequest and XMLHttpResponse) works as boon
for developers as they gives user a feel of working page
though in background heavy processing is carried out.
I. Loading Time
As AngularJS is not a client-side JavaScript
Framework it provides much more features than that of jQuery
and in comparison with AJAX, it’s data binding feature can do
miracles. This reduces the loading time of the page.
J. Mathematical Model
We will calculate the timing and page complexity
metrics as discussed in above section.
Let us consider the Loading Time for the module developed in
AngularJS, jQuery and AJAX is Lan, Ljq, Lax, respectively.
Also,
First Response time as Ran, Rjq, Rax
Execution Time as Ean, Ejq,Eax and
Page speed San, Sjq, Sax
Now, consider the sets
S1 to represent metrics values for AngularJS
S2 to represent metrics values for jQuery
S3 to represent metrics values for AJAX
So these sets can be represented as,
S1 = { Lan, Ran, Ean, San}
S2 = { Ljq, Rjq, Ejq, Sjq}
S3 = { Lax, Rax, Eax, Sax}
The results will clear that values if (S1) are least than others
i.e.
v(S1) < v(S2) < v(S3)
The comparison results for above three web development
technologies are as shown in Figure 3.
Figure 3. Performance comparison of jQuery, AngularJS and
AJAX against time constraints
Also Resource consumption in the form of total HTML,
CSS and JavaScript bytes used by a web application developed
in any of the above technology gives results in the form of pie-
charts as shown in Figure 4, below,
International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169
Volume: 5 Issue: 7 591 – 594
_______________________________________________________________________________________________
594
IJRITCC | July 2017, Available @ http://www.ijritcc.org
_______________________________________________________________________________________
Figure 4. Resource consumption of jQuery, AngularJS and
AJAX in general
IV. CONCLUSION
By implementing an analyzer tool which will compare the
performance of recent client side web development
technologies on the basis of certain parameters like – loading
time, transition time, complexity of code, etc., the results
generated will aid in evaluation of the benefits and drawbacks
of the web development technologies. It’s concluded from the
results that AngularJS gives best performance as compared to
jQuery and AJAX. Also it’s specially designed for SPAs and
not conventional websites.
ACKNOWLEDGMENT
I would like to thank Prof. S. V. Pingale for his precious
guidance throughout the process. Also many thanks to my PG
Co-ordinator Prof. N. M. Sawant and HOD Prof. A. A.
Rajguru for their valuable feedback.
REFERENCES
[1] Michael Butkiewicz, Harsha V. Madhyastha, and Vyas Sekar,
“Characterizing Web Page Complexity and Its Impact”,
IEEE/ACM TRANSACTIONS ON NETWORKING, JUNE
2014, VOL. 22, NO. 3.
[2] Rohit Dhand, “Reducing web page post backs through jQuery
Ajax calls in a Trust based Framework”, 2012 International
Conference on Computing Sciences, 2012,978-0-7695-4817-3.
[3] Kai Lei, Yining Ma, Zhi Tan, “Performance Comparison and
Evaluation of Web Development Technologies in PHP, Python
and Node.js", IEEE 17th International Conference on
Computational Science and Engineering, 2014.
[4] Marija Selakovic, Michael Pradel, "Performance Issues and
Optimizations in JavaScript: An Empirical Study", SOLA,
October 2015.
[5] Viknes Balasubramanee, Chathuri Wimalasena, Raminder Singh
and Marlon Pierce, “Twitter Bootstrap and AngularJS: Frontend
Frameworks to expedite Science Gateway development”, IEEE
Transactions 2013.
[6] N. Chapman, J. Chapman, "JavaScript on the Server Using
Node.js and Express", MacAvon Media 2014.
[7] AngularJS Tutorials by Google Inc., [Online] Available:
https://docs.angularjs.org/guide/introduction - Developer Guide
for AngularJS
[8] Single Page Applications from Microsoft website. [Online].
Available: https://msdn.microsoft.com/en-
us/magazine/dn463786.aspx

More Related Content

Similar to To implement an Analyzer for evaluation of the performance of Recent Web Development Frameworks

Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...
Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...
Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...JPLoft Solutions
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Scienceinventy
 
FRONTEND DEVELOPMENT WITH REACT.JS
FRONTEND DEVELOPMENT WITH REACT.JSFRONTEND DEVELOPMENT WITH REACT.JS
FRONTEND DEVELOPMENT WITH REACT.JSIRJET Journal
 
React js, node js &amp; angular js which one is the best for web development
React js, node js &amp; angular js  which one is the best for web development React js, node js &amp; angular js  which one is the best for web development
React js, node js &amp; angular js which one is the best for web development Concetto Labs
 
Rich Internet Web Application Development using Google Web Toolkit
Rich Internet Web Application Development using Google Web ToolkitRich Internet Web Application Development using Google Web Toolkit
Rich Internet Web Application Development using Google Web ToolkitIJERA Editor
 
React VS Angular- Which is Best for You in 2023?
 React VS Angular- Which is Best for You in 2023? React VS Angular- Which is Best for You in 2023?
React VS Angular- Which is Best for You in 2023?CMARIX TechnoLabs
 
React vs Angular - Which is best JS Framework for Front-end Development
React vs Angular - Which is best JS Framework for Front-end DevelopmentReact vs Angular - Which is best JS Framework for Front-end Development
React vs Angular - Which is best JS Framework for Front-end DevelopmentPixlogix Infotech
 
Components of a Generic Web Application Architecture
Components of  a Generic Web Application ArchitectureComponents of  a Generic Web Application Architecture
Components of a Generic Web Application ArchitectureMadonnaLamin1
 
Brief Introduction on Working of Web Crawler
Brief Introduction on Working of Web CrawlerBrief Introduction on Working of Web Crawler
Brief Introduction on Working of Web Crawlerrahulmonikasharma
 
AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)Alex Ross
 
WEB BASED AND BLOCKCHAIN APPLICATION FOR EDUCATIONAL INSTITUTION
WEB BASED AND BLOCKCHAIN APPLICATION FOR EDUCATIONAL INSTITUTIONWEB BASED AND BLOCKCHAIN APPLICATION FOR EDUCATIONAL INSTITUTION
WEB BASED AND BLOCKCHAIN APPLICATION FOR EDUCATIONAL INSTITUTIONIRJET Journal
 
Yelpcamp: A review based website for campgrounds
Yelpcamp: A review based website for campgroundsYelpcamp: A review based website for campgrounds
Yelpcamp: A review based website for campgroundsIRJET Journal
 
React.js vs angular.js a comparison
React.js vs angular.js a comparisonReact.js vs angular.js a comparison
React.js vs angular.js a comparisonNarola Infotech
 
Advantages of React over Angular
Advantages of React over AngularAdvantages of React over Angular
Advantages of React over AngularAnju21552
 
IRJET- Cross-Platform Supported E-Learning Mobile Application
IRJET- Cross-Platform Supported E-Learning Mobile ApplicationIRJET- Cross-Platform Supported E-Learning Mobile Application
IRJET- Cross-Platform Supported E-Learning Mobile ApplicationIRJET Journal
 
9 Best JavaScript Frameworks To Choose
9 Best JavaScript Frameworks To Choose9 Best JavaScript Frameworks To Choose
9 Best JavaScript Frameworks To ChooseAlbiorix Technology
 

Similar to To implement an Analyzer for evaluation of the performance of Recent Web Development Frameworks (20)

Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...
Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...
Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...
 
Research Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and ScienceResearch Inventy : International Journal of Engineering and Science
Research Inventy : International Journal of Engineering and Science
 
FRONTEND DEVELOPMENT WITH REACT.JS
FRONTEND DEVELOPMENT WITH REACT.JSFRONTEND DEVELOPMENT WITH REACT.JS
FRONTEND DEVELOPMENT WITH REACT.JS
 
React js, node js &amp; angular js which one is the best for web development
React js, node js &amp; angular js  which one is the best for web development React js, node js &amp; angular js  which one is the best for web development
React js, node js &amp; angular js which one is the best for web development
 
Rich Internet Web Application Development using Google Web Toolkit
Rich Internet Web Application Development using Google Web ToolkitRich Internet Web Application Development using Google Web Toolkit
Rich Internet Web Application Development using Google Web Toolkit
 
React VS Angular- Which is Best for You in 2023?
 React VS Angular- Which is Best for You in 2023? React VS Angular- Which is Best for You in 2023?
React VS Angular- Which is Best for You in 2023?
 
React vs Angular - Which is best JS Framework for Front-end Development
React vs Angular - Which is best JS Framework for Front-end DevelopmentReact vs Angular - Which is best JS Framework for Front-end Development
React vs Angular - Which is best JS Framework for Front-end Development
 
Components of a Generic Web Application Architecture
Components of  a Generic Web Application ArchitectureComponents of  a Generic Web Application Architecture
Components of a Generic Web Application Architecture
 
Brief Introduction on Working of Web Crawler
Brief Introduction on Working of Web CrawlerBrief Introduction on Working of Web Crawler
Brief Introduction on Working of Web Crawler
 
AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)
 
Siva_DotNet
Siva_DotNetSiva_DotNet
Siva_DotNet
 
FinalReport
FinalReportFinalReport
FinalReport
 
WEB BASED AND BLOCKCHAIN APPLICATION FOR EDUCATIONAL INSTITUTION
WEB BASED AND BLOCKCHAIN APPLICATION FOR EDUCATIONAL INSTITUTIONWEB BASED AND BLOCKCHAIN APPLICATION FOR EDUCATIONAL INSTITUTION
WEB BASED AND BLOCKCHAIN APPLICATION FOR EDUCATIONAL INSTITUTION
 
Javascript frameworks
Javascript frameworksJavascript frameworks
Javascript frameworks
 
Yelpcamp: A review based website for campgrounds
Yelpcamp: A review based website for campgroundsYelpcamp: A review based website for campgrounds
Yelpcamp: A review based website for campgrounds
 
React.js vs angular.js a comparison
React.js vs angular.js a comparisonReact.js vs angular.js a comparison
React.js vs angular.js a comparison
 
Advantages of React over Angular
Advantages of React over AngularAdvantages of React over Angular
Advantages of React over Angular
 
IRJET- Cross-Platform Supported E-Learning Mobile Application
IRJET- Cross-Platform Supported E-Learning Mobile ApplicationIRJET- Cross-Platform Supported E-Learning Mobile Application
IRJET- Cross-Platform Supported E-Learning Mobile Application
 
Angular vs React
Angular vs ReactAngular vs React
Angular vs React
 
9 Best JavaScript Frameworks To Choose
9 Best JavaScript Frameworks To Choose9 Best JavaScript Frameworks To Choose
9 Best JavaScript Frameworks To Choose
 

More from rahulmonikasharma

Data Mining Concepts - A survey paper
Data Mining Concepts - A survey paperData Mining Concepts - A survey paper
Data Mining Concepts - A survey paperrahulmonikasharma
 
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...rahulmonikasharma
 
Considering Two Sides of One Review Using Stanford NLP Framework
Considering Two Sides of One Review Using Stanford NLP FrameworkConsidering Two Sides of One Review Using Stanford NLP Framework
Considering Two Sides of One Review Using Stanford NLP Frameworkrahulmonikasharma
 
A New Detection and Decoding Technique for (2×N_r ) MIMO Communication Systems
A New Detection and Decoding Technique for (2×N_r ) MIMO Communication SystemsA New Detection and Decoding Technique for (2×N_r ) MIMO Communication Systems
A New Detection and Decoding Technique for (2×N_r ) MIMO Communication Systemsrahulmonikasharma
 
Broadcasting Scenario under Different Protocols in MANET: A Survey
Broadcasting Scenario under Different Protocols in MANET: A SurveyBroadcasting Scenario under Different Protocols in MANET: A Survey
Broadcasting Scenario under Different Protocols in MANET: A Surveyrahulmonikasharma
 
Sybil Attack Analysis and Detection Techniques in MANET
Sybil Attack Analysis and Detection Techniques in MANETSybil Attack Analysis and Detection Techniques in MANET
Sybil Attack Analysis and Detection Techniques in MANETrahulmonikasharma
 
A Landmark Based Shortest Path Detection by Using A* and Haversine Formula
A Landmark Based Shortest Path Detection by Using A* and Haversine FormulaA Landmark Based Shortest Path Detection by Using A* and Haversine Formula
A Landmark Based Shortest Path Detection by Using A* and Haversine Formularahulmonikasharma
 
Processing Over Encrypted Query Data In Internet of Things (IoTs) : CryptDBs,...
Processing Over Encrypted Query Data In Internet of Things (IoTs) : CryptDBs,...Processing Over Encrypted Query Data In Internet of Things (IoTs) : CryptDBs,...
Processing Over Encrypted Query Data In Internet of Things (IoTs) : CryptDBs,...rahulmonikasharma
 
Quality Determination and Grading of Tomatoes using Raspberry Pi
Quality Determination and Grading of Tomatoes using Raspberry PiQuality Determination and Grading of Tomatoes using Raspberry Pi
Quality Determination and Grading of Tomatoes using Raspberry Pirahulmonikasharma
 
Comparative of Delay Tolerant Network Routings and Scheduling using Max-Weigh...
Comparative of Delay Tolerant Network Routings and Scheduling using Max-Weigh...Comparative of Delay Tolerant Network Routings and Scheduling using Max-Weigh...
Comparative of Delay Tolerant Network Routings and Scheduling using Max-Weigh...rahulmonikasharma
 
DC Conductivity Study of Cadmium Sulfide Nanoparticles
DC Conductivity Study of Cadmium Sulfide NanoparticlesDC Conductivity Study of Cadmium Sulfide Nanoparticles
DC Conductivity Study of Cadmium Sulfide Nanoparticlesrahulmonikasharma
 
A Survey on Peak to Average Power Ratio Reduction Methods for LTE-OFDM
A Survey on Peak to Average Power Ratio Reduction Methods for LTE-OFDMA Survey on Peak to Average Power Ratio Reduction Methods for LTE-OFDM
A Survey on Peak to Average Power Ratio Reduction Methods for LTE-OFDMrahulmonikasharma
 
IOT Based Home Appliance Control System, Location Tracking and Energy Monitoring
IOT Based Home Appliance Control System, Location Tracking and Energy MonitoringIOT Based Home Appliance Control System, Location Tracking and Energy Monitoring
IOT Based Home Appliance Control System, Location Tracking and Energy Monitoringrahulmonikasharma
 
Thermal Radiation and Viscous Dissipation Effects on an Oscillatory Heat and ...
Thermal Radiation and Viscous Dissipation Effects on an Oscillatory Heat and ...Thermal Radiation and Viscous Dissipation Effects on an Oscillatory Heat and ...
Thermal Radiation and Viscous Dissipation Effects on an Oscillatory Heat and ...rahulmonikasharma
 
Advance Approach towards Key Feature Extraction Using Designed Filters on Dif...
Advance Approach towards Key Feature Extraction Using Designed Filters on Dif...Advance Approach towards Key Feature Extraction Using Designed Filters on Dif...
Advance Approach towards Key Feature Extraction Using Designed Filters on Dif...rahulmonikasharma
 
Alamouti-STBC based Channel Estimation Technique over MIMO OFDM System
Alamouti-STBC based Channel Estimation Technique over MIMO OFDM SystemAlamouti-STBC based Channel Estimation Technique over MIMO OFDM System
Alamouti-STBC based Channel Estimation Technique over MIMO OFDM Systemrahulmonikasharma
 
Empirical Mode Decomposition Based Signal Analysis of Gear Fault Diagnosis
Empirical Mode Decomposition Based Signal Analysis of Gear Fault DiagnosisEmpirical Mode Decomposition Based Signal Analysis of Gear Fault Diagnosis
Empirical Mode Decomposition Based Signal Analysis of Gear Fault Diagnosisrahulmonikasharma
 
Short Term Load Forecasting Using ARIMA Technique
Short Term Load Forecasting Using ARIMA TechniqueShort Term Load Forecasting Using ARIMA Technique
Short Term Load Forecasting Using ARIMA Techniquerahulmonikasharma
 
Impact of Coupling Coefficient on Coupled Line Coupler
Impact of Coupling Coefficient on Coupled Line CouplerImpact of Coupling Coefficient on Coupled Line Coupler
Impact of Coupling Coefficient on Coupled Line Couplerrahulmonikasharma
 
Design Evaluation and Temperature Rise Test of Flameproof Induction Motor
Design Evaluation and Temperature Rise Test of Flameproof Induction MotorDesign Evaluation and Temperature Rise Test of Flameproof Induction Motor
Design Evaluation and Temperature Rise Test of Flameproof Induction Motorrahulmonikasharma
 

More from rahulmonikasharma (20)

Data Mining Concepts - A survey paper
Data Mining Concepts - A survey paperData Mining Concepts - A survey paper
Data Mining Concepts - A survey paper
 
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
 
Considering Two Sides of One Review Using Stanford NLP Framework
Considering Two Sides of One Review Using Stanford NLP FrameworkConsidering Two Sides of One Review Using Stanford NLP Framework
Considering Two Sides of One Review Using Stanford NLP Framework
 
A New Detection and Decoding Technique for (2×N_r ) MIMO Communication Systems
A New Detection and Decoding Technique for (2×N_r ) MIMO Communication SystemsA New Detection and Decoding Technique for (2×N_r ) MIMO Communication Systems
A New Detection and Decoding Technique for (2×N_r ) MIMO Communication Systems
 
Broadcasting Scenario under Different Protocols in MANET: A Survey
Broadcasting Scenario under Different Protocols in MANET: A SurveyBroadcasting Scenario under Different Protocols in MANET: A Survey
Broadcasting Scenario under Different Protocols in MANET: A Survey
 
Sybil Attack Analysis and Detection Techniques in MANET
Sybil Attack Analysis and Detection Techniques in MANETSybil Attack Analysis and Detection Techniques in MANET
Sybil Attack Analysis and Detection Techniques in MANET
 
A Landmark Based Shortest Path Detection by Using A* and Haversine Formula
A Landmark Based Shortest Path Detection by Using A* and Haversine FormulaA Landmark Based Shortest Path Detection by Using A* and Haversine Formula
A Landmark Based Shortest Path Detection by Using A* and Haversine Formula
 
Processing Over Encrypted Query Data In Internet of Things (IoTs) : CryptDBs,...
Processing Over Encrypted Query Data In Internet of Things (IoTs) : CryptDBs,...Processing Over Encrypted Query Data In Internet of Things (IoTs) : CryptDBs,...
Processing Over Encrypted Query Data In Internet of Things (IoTs) : CryptDBs,...
 
Quality Determination and Grading of Tomatoes using Raspberry Pi
Quality Determination and Grading of Tomatoes using Raspberry PiQuality Determination and Grading of Tomatoes using Raspberry Pi
Quality Determination and Grading of Tomatoes using Raspberry Pi
 
Comparative of Delay Tolerant Network Routings and Scheduling using Max-Weigh...
Comparative of Delay Tolerant Network Routings and Scheduling using Max-Weigh...Comparative of Delay Tolerant Network Routings and Scheduling using Max-Weigh...
Comparative of Delay Tolerant Network Routings and Scheduling using Max-Weigh...
 
DC Conductivity Study of Cadmium Sulfide Nanoparticles
DC Conductivity Study of Cadmium Sulfide NanoparticlesDC Conductivity Study of Cadmium Sulfide Nanoparticles
DC Conductivity Study of Cadmium Sulfide Nanoparticles
 
A Survey on Peak to Average Power Ratio Reduction Methods for LTE-OFDM
A Survey on Peak to Average Power Ratio Reduction Methods for LTE-OFDMA Survey on Peak to Average Power Ratio Reduction Methods for LTE-OFDM
A Survey on Peak to Average Power Ratio Reduction Methods for LTE-OFDM
 
IOT Based Home Appliance Control System, Location Tracking and Energy Monitoring
IOT Based Home Appliance Control System, Location Tracking and Energy MonitoringIOT Based Home Appliance Control System, Location Tracking and Energy Monitoring
IOT Based Home Appliance Control System, Location Tracking and Energy Monitoring
 
Thermal Radiation and Viscous Dissipation Effects on an Oscillatory Heat and ...
Thermal Radiation and Viscous Dissipation Effects on an Oscillatory Heat and ...Thermal Radiation and Viscous Dissipation Effects on an Oscillatory Heat and ...
Thermal Radiation and Viscous Dissipation Effects on an Oscillatory Heat and ...
 
Advance Approach towards Key Feature Extraction Using Designed Filters on Dif...
Advance Approach towards Key Feature Extraction Using Designed Filters on Dif...Advance Approach towards Key Feature Extraction Using Designed Filters on Dif...
Advance Approach towards Key Feature Extraction Using Designed Filters on Dif...
 
Alamouti-STBC based Channel Estimation Technique over MIMO OFDM System
Alamouti-STBC based Channel Estimation Technique over MIMO OFDM SystemAlamouti-STBC based Channel Estimation Technique over MIMO OFDM System
Alamouti-STBC based Channel Estimation Technique over MIMO OFDM System
 
Empirical Mode Decomposition Based Signal Analysis of Gear Fault Diagnosis
Empirical Mode Decomposition Based Signal Analysis of Gear Fault DiagnosisEmpirical Mode Decomposition Based Signal Analysis of Gear Fault Diagnosis
Empirical Mode Decomposition Based Signal Analysis of Gear Fault Diagnosis
 
Short Term Load Forecasting Using ARIMA Technique
Short Term Load Forecasting Using ARIMA TechniqueShort Term Load Forecasting Using ARIMA Technique
Short Term Load Forecasting Using ARIMA Technique
 
Impact of Coupling Coefficient on Coupled Line Coupler
Impact of Coupling Coefficient on Coupled Line CouplerImpact of Coupling Coefficient on Coupled Line Coupler
Impact of Coupling Coefficient on Coupled Line Coupler
 
Design Evaluation and Temperature Rise Test of Flameproof Induction Motor
Design Evaluation and Temperature Rise Test of Flameproof Induction MotorDesign Evaluation and Temperature Rise Test of Flameproof Induction Motor
Design Evaluation and Temperature Rise Test of Flameproof Induction Motor
 

Recently uploaded

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfRagavanV2
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfrs7054576148
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 

Recently uploaded (20)

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdf
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 

To implement an Analyzer for evaluation of the performance of Recent Web Development Frameworks

  • 1. International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169 Volume: 5 Issue: 7 591 – 594 _______________________________________________________________________________________________ 591 IJRITCC | July 2017, Available @ http://www.ijritcc.org _______________________________________________________________________________________ To implement an Analyzer for evaluation of the performance of Recent Web Development Frameworks Phule Vidya G. PG Student: of Computer Science and Engineering at SKNSCOE, Pandharur phulevg@gmail.com Pingale S. V. HOD: Computer Science and Engineering at SKNSCOE, Pandharur sub.pingale83@gmail.com Abstract— Everything you see, click, and interact with on a website is the work of front-end web development. Client-side frameworks and scripting languages like JavaScript and various JS libraries like AngularJS, jQuery, Node.js, etc. have made it possible for developers to develop interactive websites with performance improvement. Today the use of web is raised to such an extent that web has evolved from simple text content from one server to complex ecosystem with various types of contents spread across several administrative domains. This content makes the websites more complex and hence affects user experience. Till now efforts has been done to improve the performance at server side by increasing scalability of back-end or making the application more efficient. The performance of client side is not measured or just tested for usability. Some widely used JavaScript benchmark suites for measuring the performance of web browsers. The main focus of such a benchmark is not to measure the performance of a web application itself, but to measure its performance within a specific browser. There is wide variety of literature being available to measure the complexity of web pages and determining the load time. The aim behind our project is that to characterize the complexity of web pages built using different web development technologies like AngularJS, jQuery, AJAX (Client side web development technologies) so as to compare and analyze the usage of proper web development technique. In this paper we have used AngularJS as a case study to evaluate its performance against other frameworks like jQuery and AJAX. Keywords- AngularJS;Browsers; jQuery;, AJAX; MVC; SPA; JSON. __________________________________________________*****_________________________________________________ I. INTRODUCTION Now a day's it's almost impossible to conceive a life without internet. The World Wide Web (WWW) as the largest global information media store through which user can share, read, and writes data through computers connected with internet. As the usage of web is increased to such an extent that web has evolved from simple text content from one server to complex ecosystem. Web site today fetches content not only from servers hosted by its providers, but also from a range of third-party services like advertising agencies, content distribution networks (CDNs), and analytics services [1]. Also, rendering a single Web page today involves fetching several objects from multiple servers under different administrative domains. Because of these factors web pages becomes more complex, hence the user experience gets degraded. With the increasing diversity of client platforms for accessing the Web, it is important for browser developers to identify the aspects of Web page complexity that impact use experience [1]. They need tools and techniques to evaluate the impact of these services on users. There is a wide variety of literature being available to measure the complexity of web pages and determining the load time. Here our aim is to provide the Analyzer tool which is capable of profiling web page complexity against certain performance metrics actually impacting web page performance. The benefits of this work will be complexity will be reduced to some extent using proper developmental technique hence load time will get reduced and the user experience will be better. Now-a-days JavaScript and its libraries provide interactive approach to static web pages [2]. Here we have taken AngularJS, jQuery and AJAX as case studies for comparison as they are widely used for web application development. II. RECENT WEB DEVELOPMENT FRAMEWORKS OF JAVASCRIPT USED IN PAPER This paper takes into account latest widely used javascript frameworks viz. AngularJS, jQuery and AJAX. They are introduced in nut-shell as below. A. AngularJS AngularJS is a JavaScript framework and specifically designed to create SPAs. It is a library written in JavaScript. AngularJS provides the web application with Model-View Controller (MVC) capability. In contrast to the traditional MVC architecture like SpringMVC, where the website is rendered from the server side, with Angular the view is generated in the browser using its Model which holds all the required data [5]. The controller takes care of the interactions between the HTML page and Model. The upside here is, there is no server side calls involved in these operations and everything is done on the client side with cached data. AngularJS abstracts the server calls to a separate layer to avoid code redundancy across multiple views for a gateway built
  • 2. International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169 Volume: 5 Issue: 7 591 – 594 _______________________________________________________________________________________________ 592 IJRITCC | July 2017, Available @ http://www.ijritcc.org _______________________________________________________________________________________ with pure HTML5, JavaScript and REST services. AngularJS manipulates the DOM automatically. Because of that the burden of developers gets reduced as view automatically gets updated when data changes. It makes the view lightweight, by decoupling the view rendering from the server side. B. Single Page Applications A single-page application (SPA) is a web application or web site that fits on a single web page with the goal of providing a user experience similar to that of a desktop application. In an SPA is retrieved with a single page load, or the appropriate resources are dynamically loaded and added to the page as necessary, usually in response to user actions. Interaction with the single page application often involves dynamic communication with the web server behind the scenes [6]. In nutshell, how SPA work can be represented as follows. 1. Browser initiates a request to server 2. Server sends a webpage (consists of HTML and JavaScript) 3. Browser loads the entire webpage 4. User clicks on a link (initiates a new request and asks for the information that is only going to need to update the webpage) 5. Server responds with JSON data 6. Browser loads the JSON data into the existing webpage to update it. This mode of working significantly makes the processing faster and efficient thereby improving the performance of the page. C. jQuery jQuery is a cross-platform JavaScript library designed to simplify the client-side scripting of HTML. jQuery is one of the widely used JavaScript libraries today [2]. The workflow behind the scenes can be represented as shown in Figure1. Figure 1. JQuery: How it works jQuery, at its core, is a DOM (Document Object Model) manipulation library. The DOM is a tree-structure representation of all the elements of a Web page and jQuery simplifies the syntax for finding, selecting, and manipulating these DOM elements. jQuery also provides a paradigm for event handling that goes beyond basic DOM element selection and manipulation. The event assignment and the event call back function definition are done in a single step in a single location in the code. jQuery also aims to incorporate other highly used JavaScript functionality. D. Ajax Ajax (Asynchronous JavaScript and XML) is a set of web development techniques at client side to create asynchronous Web applications. With Ajax, web applications can send data to and retrieve from a server asynchronously (in the background) without interfering with the display and behavior of the existing page [2]. Ajax allows for web pages, and by extension web applications, to change content dynamically without the need to reload the entire page. In practice, modern implementations commonly substitute JSON for XML as shown in Figure 2. Figure 2. AJAX Work flow Ajax is not a technology, but a group of technologies. HTML and CSS are used in combination to mark up and style information. The DOM is accessed with JavaScript to dynamically display the information presented. Now for discussion about the previous work done to analyze the performance of web technologies and their evaluation, not a single application is available at present. Literature is available to measure the complexity of web pages. Browsers built tools are used to measure the loading time by analyzing log files. Also the performance for server side web technologies is measured, while our approach is to measure and evaluate the client side web technologies performance. III. APPROACH The process to be followed for the work requires performance metrics to be defined for the comparison of frameworks. For web pages the metrics that affect user experience can be outlined as below.
  • 3. International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169 Volume: 5 Issue: 7 591 – 594 _______________________________________________________________________________________________ 593 IJRITCC | July 2017, Available @ http://www.ijritcc.org _______________________________________________________________________________________ A. Page Load Time Loading time of a webpage is the time required to request and render the entire requested web-page in the browser of client. B. Transition Time Transition time defines the time required to make a transition from one webpage to another by visiting a link. C. Throughput Throughput is characterized by No. of jobs completed per second [3]. Here in our context we'll redefine it as No. of requests processed per second. D. Response Time Response time (in case of AJAX)-i.e. RTT i.e. time required for request to travel from client to server and back again. E. Resource Consumption Resource consumption is the amount of hardware resources used at a certain point in time. F. Bandwidth Or Data Consumption Bandwidth expresses the maximum data flow in and out of a computer system. G. Complexity Of Webpage It can be calculated by calculating No. of objects downloaded, Size of the objects downloaded and No. of distinct non origin servers contacted by the webpage [1]. The empirical results generated will provide the developer with detailed information about performance (execution speed) at client side. H. User Experience User experience is the important criterion that determines the success of any technology. AngularJS clearly proves to this, in case of Web Applications or the websites that run on the notion of manipulation of information, typical example of which is an ecommerce portal (Paytm) [2].Also AJAX has been proven best in cases where data updates require tones of data transfer to and from browser to server. In that case AJAX provided partial update feature (XMLHttpRequest and XMLHttpResponse) works as boon for developers as they gives user a feel of working page though in background heavy processing is carried out. I. Loading Time As AngularJS is not a client-side JavaScript Framework it provides much more features than that of jQuery and in comparison with AJAX, it’s data binding feature can do miracles. This reduces the loading time of the page. J. Mathematical Model We will calculate the timing and page complexity metrics as discussed in above section. Let us consider the Loading Time for the module developed in AngularJS, jQuery and AJAX is Lan, Ljq, Lax, respectively. Also, First Response time as Ran, Rjq, Rax Execution Time as Ean, Ejq,Eax and Page speed San, Sjq, Sax Now, consider the sets S1 to represent metrics values for AngularJS S2 to represent metrics values for jQuery S3 to represent metrics values for AJAX So these sets can be represented as, S1 = { Lan, Ran, Ean, San} S2 = { Ljq, Rjq, Ejq, Sjq} S3 = { Lax, Rax, Eax, Sax} The results will clear that values if (S1) are least than others i.e. v(S1) < v(S2) < v(S3) The comparison results for above three web development technologies are as shown in Figure 3. Figure 3. Performance comparison of jQuery, AngularJS and AJAX against time constraints Also Resource consumption in the form of total HTML, CSS and JavaScript bytes used by a web application developed in any of the above technology gives results in the form of pie- charts as shown in Figure 4, below,
  • 4. International Journal on Recent and Innovation Trends in Computing and Communication ISSN: 2321-8169 Volume: 5 Issue: 7 591 – 594 _______________________________________________________________________________________________ 594 IJRITCC | July 2017, Available @ http://www.ijritcc.org _______________________________________________________________________________________ Figure 4. Resource consumption of jQuery, AngularJS and AJAX in general IV. CONCLUSION By implementing an analyzer tool which will compare the performance of recent client side web development technologies on the basis of certain parameters like – loading time, transition time, complexity of code, etc., the results generated will aid in evaluation of the benefits and drawbacks of the web development technologies. It’s concluded from the results that AngularJS gives best performance as compared to jQuery and AJAX. Also it’s specially designed for SPAs and not conventional websites. ACKNOWLEDGMENT I would like to thank Prof. S. V. Pingale for his precious guidance throughout the process. Also many thanks to my PG Co-ordinator Prof. N. M. Sawant and HOD Prof. A. A. Rajguru for their valuable feedback. REFERENCES [1] Michael Butkiewicz, Harsha V. Madhyastha, and Vyas Sekar, “Characterizing Web Page Complexity and Its Impact”, IEEE/ACM TRANSACTIONS ON NETWORKING, JUNE 2014, VOL. 22, NO. 3. [2] Rohit Dhand, “Reducing web page post backs through jQuery Ajax calls in a Trust based Framework”, 2012 International Conference on Computing Sciences, 2012,978-0-7695-4817-3. [3] Kai Lei, Yining Ma, Zhi Tan, “Performance Comparison and Evaluation of Web Development Technologies in PHP, Python and Node.js", IEEE 17th International Conference on Computational Science and Engineering, 2014. [4] Marija Selakovic, Michael Pradel, "Performance Issues and Optimizations in JavaScript: An Empirical Study", SOLA, October 2015. [5] Viknes Balasubramanee, Chathuri Wimalasena, Raminder Singh and Marlon Pierce, “Twitter Bootstrap and AngularJS: Frontend Frameworks to expedite Science Gateway development”, IEEE Transactions 2013. [6] N. Chapman, J. Chapman, "JavaScript on the Server Using Node.js and Express", MacAvon Media 2014. [7] AngularJS Tutorials by Google Inc., [Online] Available: https://docs.angularjs.org/guide/introduction - Developer Guide for AngularJS [8] Single Page Applications from Microsoft website. [Online]. Available: https://msdn.microsoft.com/en- us/magazine/dn463786.aspx