SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Top JavaScript Frameworks
By omkarsoft
Top JavaScript Frameworks
AngularJS:
AngularJS is an open-source JavaScript framework, maintained
by Google, that assists with running single-page applications.It
has some compelling features for not only developers, but
designers as well!
Getting Into AngularJS
1.All of your AngularJS application files will live in the app/js
directory.
2.app.js declares the application with all its dependencies
3.config.js defines the routes, initializes the angularFireAuth
module, and declares your Firebase URL as a constant
4.The controllers/ directory contains all your application
controllers, separated into their own files. You will continue
this separate file convention as the application grows.
5.The services/ directory contains all your application services,
following the same file convention as controllers.
6.The directives/ and filters/ directories are empty, but they will
contain all your custom Angular directives and filters.
Overview:
The Angular.js web site essentially carries out these tasks:
1.When on the root page, the Angular.js will listen to messages
sent via the WPF publisher over a web socket, which then
gets broadcast internally using the Reactive Extensions for
JavaScript to anyone interested, which in this article is
essentially just the root page.
2.The user may also choose to navigate to a favourites page that
will display some thumbnail images of their HTML 5 local
storage persisted favourites. These thumbnails may be
clicked on to show a pretty standard ColorBox (Lightbox etc
etc type thing) jQuery plugin.
3.The user may also choose to a view static about page, which I
simply added to make enough routes to make things more
worthwhile when demonstating the routing within Angular.js
Block diagram:
Advantages of AngularJS:
• The declarative process is easier to understand.
• You can package code as reusable modules.
• The modules can be loaded in any order (or even in parallel)
because modules delay execution.
• AngularJS is a great choice if your are building a CRUD
(create/read/update/delete) client side app
• Unit tests only have to load relevant modules, which keeps
them fast.
• End-to-end tests can use modules to override configuration.
Applications of AngularJS:
1.Mobile apps - You can create Mobile Web Apps with
AngularJS and Phonegap; there’s a project that binds the
awesome mobile framework LungoJS with AngularJS. It’s
called Lungo-Angular-Bridge or just LAB.
2.CRUD Web Apps - Probably this is the most common use of
Angular JS. It includes nice examples for creating a simple
CRUD application with Directives, Resources and Services.
3.Chrome Extensions - The easiest way to create a Chrome
Extension (either packaged or not) is through Yeoman, its
Chrome Extension Generator.
4.Testable JS Apps - AngularJS is fully powered with Test
Suites.
Node.JS:
Node.js is a software platform
for scalable server-side and
networking applications.
Overview:
The functioning is described in
the schema below. A
JavaScript script creates an
instance of server and open
a port through which a
browser or other user agent
can communicate with the
script.
Examples of Where Node.js Should Be Used:
The following are some examples of where Node.js should be used :
• CHAT
The chat application is really the sweet-spot example for
Node.js: it’s a lightweight, high traffic, data-intensive (but low
processing/computation) application that runs across distributed
devices.
• PROXY
Node.js is easily employed as a server-side proxy where it
can handle a large amount of simultaneous connections in a non-
blocking manner.
It’s especially useful for proxying different services with
different response times, or collecting data from multiple source
points.
• DATA STREAMING
It is possible to process files while they’re still
being uploaded, as the data comes in through a stream and we can
process it in an online fashion. This could be done for real-time
audio or video encoding, and proxying between different data
sources.
Real Time Applications:
Some of the real time applications of Node.js are:
• It can be used as Web socket server : A typical example of
this is a chat server.
• Fast file upload client: when there are big file to be uploaded,
to make sure that they don’t block so that you can upload
more than one file at a time.
Advantages of Node.js:
 Node.js is a lightweight platform.
 Node.js combined with a browser, a document DB (such as
MongoDB or CouchDB) and JSON offers a unified JavaScript
development stack.
 Node.js allows the reuse of the same model and service
interface between client-side and server-side.
Disadvantages of Node.js:
 Npm shrink wrap and package.json were introduced a while
back to set up standards, but the issue of standards is still a
work in process and some issues still exist.
 The whole callback, event-driven, functional programming
aspects of Node.js can add a learning curve burden to server-
side programmers of other object-oriented languages.
 Asynchronous and event-driven code inherently adds more
complexity to the code versus a synchronous code.
 JavaScript has more than its share of “bad parts” that might
throw off engineers and newcomers.
Agility.js:
 Agility.js is an MVC library for Javascript that lets you write
maintainable and reusable browser code without the verbose
or infrastructural overhead found in other MVC libraries.
 Architecture of Agility.js:
Agility’s architecture follows one of
the simplest MVC patterns: users define Controller functions,
which make direct calls to, and handle events from Models
and Views. The diagram below illustrates this.
Architecture of Agility.js
• Agility objects are
lightweight in memory
(through pervasive use of
prototypes), this comes at
little performance cost.
• Every Agility object can
serve as a container of
other Agility objects.
Agility objects:
Features of Agility.js:
 Painless two-way model-view bindings;
 Implicit controller-event bindings;
 Controller auto-proxying for quick and consistent access to
owner object;
 Format and style in-object for “copy-and-paste” reusability;
 Small (<10K) single-library include;
 Compact and efficient syntax, inspired by jQuery;
Real time applications:
1. cheaphotels.co.uk – Cheap Hotels is an online search
engine and deal finder for hotels across the globe.
2. OpDots.com – OpDots is the “see everything” dashboard for
your enterprise data.
3. The Wall – The Wall is a minimal Twitter clone, where
everyone can post anonymously to a virtual “wall”. It
illustrates most features offered by Agility, including server-
side persistence
Backbone.js:
 Backbone came out in June 2010, and its community is
nearly as large as Angular’s.
 Backbone.js is a JavaScript client-side (front-end) framework.
 It helps to organize your code and makes it easier for you to
develop single-page web applications.
Applications:
 Many popular applications use the Backbone framework,
including Twitter, Foursquare, and LinkedIn Mobile.
 A number of music apps were built with Backbone, including
Soundcloud, Pitchfork, and Pandora.
Advantages:
 Backbone’s diminutive size is typically its biggest selling point,
since it only depends on one JavaScript library instead of
several.
 Backbone is extremely lightweight, which means it’s good for
building fast and responsive applications.
How to start with Backbone.js :
Backbone.js has hard dependency on underscore.js and a soft
dependency on jQuery.
It’s made up of the following modules:
Views
Events
Models
Collections
Routers
view,model,router:
What is a view?
 Backbone views are used to reflect what your applications’
data models look like.
 They are also used to listen to events and react accordingly.
What is a model?
 Models are the heart of any JavaScript application.
 It contains the interactive data as well as a large part of the
logic surrounding it: conversions, validations, computed
properties, and access control.
What is a router?
 Routers are used for routing your applications URL’s when
using hash tags(#).
 Defined routers should always contain at least one route and
a function to map the particular route to.
collection,
What is a collection?
Backbone collections are simply an ordered set of models.
It can be used in situations such as :
Model: Student, Collection: ClassStudents
Model: Todo Item, Collection: Todo List
Model: Animal, Collection: Zoo
Documentation:
Here is the documentation link:http://backbonejs.org
Thank You
Presented by
Omkarsoft www.omkarsoft.com

Weitere ähnliche Inhalte

Was ist angesagt?

Web development using javaScript, React js, Node js, HTML, CSS and SQL
Web development using javaScript, React js, Node js, HTML, CSS and SQLWeb development using javaScript, React js, Node js, HTML, CSS and SQL
Web development using javaScript, React js, Node js, HTML, CSS and SQLJayant Surana
 
Cypress first impressions
Cypress first impressionsCypress first impressions
Cypress first impressionsHans Emmel
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to DjangoKnoldus Inc.
 
WordPress Course Outline
WordPress Course OutlineWordPress Course Outline
WordPress Course OutlineManny Sarmiento
 
FRONT-END WEB DEVELOPMENT WITH REACTJS
FRONT-END WEB DEVELOPMENT WITH REACTJSFRONT-END WEB DEVELOPMENT WITH REACTJS
FRONT-END WEB DEVELOPMENT WITH REACTJSTran Phong Phu
 
Front end web development
Front end web developmentFront end web development
Front end web developmentviveksewa
 
Ppt of web development
Ppt of web developmentPpt of web development
Ppt of web developmentbethanygfair
 
Full stack web development
Full stack web developmentFull stack web development
Full stack web developmentCrampete
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JSArno Lordkronos
 
Angular vs React vs Vue | Javascript Frameworks Comparison | Which One You Sh...
Angular vs React vs Vue | Javascript Frameworks Comparison | Which One You Sh...Angular vs React vs Vue | Javascript Frameworks Comparison | Which One You Sh...
Angular vs React vs Vue | Javascript Frameworks Comparison | Which One You Sh...Edureka!
 
Leading frameworks to power your front end development
Leading frameworks to power your front end developmentLeading frameworks to power your front end development
Leading frameworks to power your front end developmentBenish Balakrishnan
 
Full Stack Web Development
Full Stack Web DevelopmentFull Stack Web Development
Full Stack Web DevelopmentSWAGATHCHOWDARY1
 

Was ist angesagt? (20)

Basics of VueJS
Basics of VueJSBasics of VueJS
Basics of VueJS
 
Tomcat
TomcatTomcat
Tomcat
 
Web development using javaScript, React js, Node js, HTML, CSS and SQL
Web development using javaScript, React js, Node js, HTML, CSS and SQLWeb development using javaScript, React js, Node js, HTML, CSS and SQL
Web development using javaScript, React js, Node js, HTML, CSS and SQL
 
Node.js Basics
Node.js Basics Node.js Basics
Node.js Basics
 
Cypress first impressions
Cypress first impressionsCypress first impressions
Cypress first impressions
 
Angularjs PPT
Angularjs PPTAngularjs PPT
Angularjs PPT
 
Nodejs
NodejsNodejs
Nodejs
 
Android Training
Android TrainingAndroid Training
Android Training
 
Android Operating System Architecture
Android Operating System ArchitectureAndroid Operating System Architecture
Android Operating System Architecture
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
 
WordPress Course Outline
WordPress Course OutlineWordPress Course Outline
WordPress Course Outline
 
FRONT-END WEB DEVELOPMENT WITH REACTJS
FRONT-END WEB DEVELOPMENT WITH REACTJSFRONT-END WEB DEVELOPMENT WITH REACTJS
FRONT-END WEB DEVELOPMENT WITH REACTJS
 
Front end web development
Front end web developmentFront end web development
Front end web development
 
Ppt of web development
Ppt of web developmentPpt of web development
Ppt of web development
 
Full stack web development
Full stack web developmentFull stack web development
Full stack web development
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JS
 
Angular vs React vs Vue | Javascript Frameworks Comparison | Which One You Sh...
Angular vs React vs Vue | Javascript Frameworks Comparison | Which One You Sh...Angular vs React vs Vue | Javascript Frameworks Comparison | Which One You Sh...
Angular vs React vs Vue | Javascript Frameworks Comparison | Which One You Sh...
 
Leading frameworks to power your front end development
Leading frameworks to power your front end developmentLeading frameworks to power your front end development
Leading frameworks to power your front end development
 
Backend Programming
Backend ProgrammingBackend Programming
Backend Programming
 
Full Stack Web Development
Full Stack Web DevelopmentFull Stack Web Development
Full Stack Web Development
 

Andere mochten auch

Top 5 Javascript Frameworks for Web and Mobile App Development
Top 5 Javascript Frameworks for Web and Mobile App DevelopmentTop 5 Javascript Frameworks for Web and Mobile App Development
Top 5 Javascript Frameworks for Web and Mobile App DevelopmentAjeet Singh
 
Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017AmarInfotech
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewDiacode
 
MVVM - Model View ViewModel
MVVM - Model View ViewModelMVVM - Model View ViewModel
MVVM - Model View ViewModelDareen Alhiyari
 
Picking the Right Node.js Framework for Your Use Case
Picking the Right Node.js Framework for Your Use CasePicking the Right Node.js Framework for Your Use Case
Picking the Right Node.js Framework for Your Use CaseJimmy Guerrero
 
AngularJS intro
AngularJS introAngularJS intro
AngularJS introdizabl
 
Design Pattern - MVC, MVP and MVVM
Design Pattern - MVC, MVP and MVVMDesign Pattern - MVC, MVP and MVVM
Design Pattern - MVC, MVP and MVVMMudasir Qazi
 
Node js presentation
Node js presentationNode js presentation
Node js presentationmartincabrera
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.jsVikash Singh
 
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...Matt Raible
 

Andere mochten auch (19)

Top 5 Javascript Frameworks for Web and Mobile App Development
Top 5 Javascript Frameworks for Web and Mobile App DevelopmentTop 5 Javascript Frameworks for Web and Mobile App Development
Top 5 Javascript Frameworks for Web and Mobile App Development
 
reveal.js 3.0.0
reveal.js 3.0.0reveal.js 3.0.0
reveal.js 3.0.0
 
Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overview
 
Mvc, mvp, mvvm...
Mvc, mvp, mvvm...Mvc, mvp, mvvm...
Mvc, mvp, mvvm...
 
Firebase ng2 zurich
Firebase ng2 zurichFirebase ng2 zurich
Firebase ng2 zurich
 
Ajs ppt
Ajs pptAjs ppt
Ajs ppt
 
MVVM - Model View ViewModel
MVVM - Model View ViewModelMVVM - Model View ViewModel
MVVM - Model View ViewModel
 
Picking the Right Node.js Framework for Your Use Case
Picking the Right Node.js Framework for Your Use CasePicking the Right Node.js Framework for Your Use Case
Picking the Right Node.js Framework for Your Use Case
 
AngularJS intro
AngularJS introAngularJS intro
AngularJS intro
 
Design Pattern - MVC, MVP and MVVM
Design Pattern - MVC, MVP and MVVMDesign Pattern - MVC, MVP and MVVM
Design Pattern - MVC, MVP and MVVM
 
Node js presentation
Node js presentationNode js presentation
Node js presentation
 
Node.js security
Node.js securityNode.js security
Node.js security
 
Benefits of developing single page web applications using angular js
Benefits of developing single page web applications using angular jsBenefits of developing single page web applications using angular js
Benefits of developing single page web applications using angular js
 
Java script ppt
Java script pptJava script ppt
Java script ppt
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 
Js ppt
Js pptJs ppt
Js ppt
 
Introduction to Angularjs
Introduction to AngularjsIntroduction to Angularjs
Introduction to Angularjs
 
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...
 

Ähnlich wie Top java script frameworks ppt

9 Best JavaScript Frameworks To Choose
9 Best JavaScript Frameworks To Choose9 Best JavaScript Frameworks To Choose
9 Best JavaScript Frameworks To ChooseAlbiorix Technology
 
Node.js Development Tools
 Node.js Development Tools Node.js Development Tools
Node.js Development ToolsSofiaCarter4
 
5 Powerful Backend Frameworks for Web App Development in 2022
5 Powerful Backend Frameworks for Web App Development in 20225 Powerful Backend Frameworks for Web App Development in 2022
5 Powerful Backend Frameworks for Web App Development in 202275waytechnologies
 
Top 11 Front-End Web Development Tools To Consider in 2020
 Top 11 Front-End Web Development Tools To Consider in 2020 Top 11 Front-End Web Development Tools To Consider in 2020
Top 11 Front-End Web Development Tools To Consider in 2020Katy Slemon
 
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
 
8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx
8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx
8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx75waytechnologies
 
Node js installation steps.pptx slide share ppts
Node js installation steps.pptx slide share pptsNode js installation steps.pptx slide share ppts
Node js installation steps.pptx slide share pptsHemaSenthil5
 
Big Improvement_ New AngularJS Tools Changing How We Develop.pptx
Big Improvement_ New AngularJS Tools Changing How We Develop.pptxBig Improvement_ New AngularJS Tools Changing How We Develop.pptx
Big Improvement_ New AngularJS Tools Changing How We Develop.pptxsarah david
 
AngularJS - A Powerful Framework For Web Applications
AngularJS - A Powerful Framework For Web ApplicationsAngularJS - A Powerful Framework For Web Applications
AngularJS - A Powerful Framework For Web ApplicationsIdexcel Technologies
 
Big Improvement_ New AngularJS Tools Changing How We Develop.pdf
Big Improvement_ New AngularJS Tools Changing How We Develop.pdfBig Improvement_ New AngularJS Tools Changing How We Develop.pdf
Big Improvement_ New AngularJS Tools Changing How We Develop.pdfsarah david
 
Comparison Between React Vs Angular.pdf
Comparison Between React Vs Angular.pdfComparison Between React Vs Angular.pdf
Comparison Between React Vs Angular.pdfStephieJohn
 
Important Backend Frameworks To Remember For Businesses In 2023
Important Backend Frameworks To Remember For Businesses In 2023Important Backend Frameworks To Remember For Businesses In 2023
Important Backend Frameworks To Remember For Businesses In 2023Netizens Technologies
 
Top 10 frameworks of node js
Top 10 frameworks of node jsTop 10 frameworks of node js
Top 10 frameworks of node jsHabilelabs
 
Nodejs framework for app development.pdf
Nodejs framework for app development.pdfNodejs framework for app development.pdf
Nodejs framework for app development.pdfSufalam Technologies
 

Ähnlich wie Top java script frameworks ppt (20)

Javascript frameworks
Javascript frameworksJavascript frameworks
Javascript frameworks
 
Top 10 Javascript Frameworks For Easy Web Development
Top 10 Javascript Frameworks For Easy Web DevelopmentTop 10 Javascript Frameworks For Easy Web Development
Top 10 Javascript Frameworks For Easy Web Development
 
9 Best JavaScript Frameworks To Choose
9 Best JavaScript Frameworks To Choose9 Best JavaScript Frameworks To Choose
9 Best JavaScript Frameworks To Choose
 
What is mean stack?
What is mean stack?What is mean stack?
What is mean stack?
 
Node.js Development Tools
 Node.js Development Tools Node.js Development Tools
Node.js Development Tools
 
5 Powerful Backend Frameworks for Web App Development in 2022
5 Powerful Backend Frameworks for Web App Development in 20225 Powerful Backend Frameworks for Web App Development in 2022
5 Powerful Backend Frameworks for Web App Development in 2022
 
Top 11 Front-End Web Development Tools To Consider in 2020
 Top 11 Front-End Web Development Tools To Consider in 2020 Top 11 Front-End Web Development Tools To Consider in 2020
Top 11 Front-End Web Development Tools To Consider in 2020
 
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...
 
8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx
8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx
8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx
 
Node js installation steps.pptx slide share ppts
Node js installation steps.pptx slide share pptsNode js installation steps.pptx slide share ppts
Node js installation steps.pptx slide share ppts
 
Big Improvement_ New AngularJS Tools Changing How We Develop.pptx
Big Improvement_ New AngularJS Tools Changing How We Develop.pptxBig Improvement_ New AngularJS Tools Changing How We Develop.pptx
Big Improvement_ New AngularJS Tools Changing How We Develop.pptx
 
AngularJS - A Powerful Framework For Web Applications
AngularJS - A Powerful Framework For Web ApplicationsAngularJS - A Powerful Framework For Web Applications
AngularJS - A Powerful Framework For Web Applications
 
Big Improvement_ New AngularJS Tools Changing How We Develop.pdf
Big Improvement_ New AngularJS Tools Changing How We Develop.pdfBig Improvement_ New AngularJS Tools Changing How We Develop.pdf
Big Improvement_ New AngularJS Tools Changing How We Develop.pdf
 
Comparison Between React Vs Angular.pdf
Comparison Between React Vs Angular.pdfComparison Between React Vs Angular.pdf
Comparison Between React Vs Angular.pdf
 
Important Backend Frameworks To Remember For Businesses In 2023
Important Backend Frameworks To Remember For Businesses In 2023Important Backend Frameworks To Remember For Businesses In 2023
Important Backend Frameworks To Remember For Businesses In 2023
 
Top 10 frameworks of node js
Top 10 frameworks of node jsTop 10 frameworks of node js
Top 10 frameworks of node js
 
Top 5 backend frameworks for web development in.pptx
Top 5 backend frameworks for web development in.pptxTop 5 backend frameworks for web development in.pptx
Top 5 backend frameworks for web development in.pptx
 
Js frameworks
Js frameworksJs frameworks
Js frameworks
 
Nodejs framework for app development.pdf
Nodejs framework for app development.pdfNodejs framework for app development.pdf
Nodejs framework for app development.pdf
 
Java script framework
Java script frameworkJava script framework
Java script framework
 

Kürzlich hochgeladen

Call Girls In New Delhi Railway Station 9667422720 Top Quality Escorts Service
Call Girls In New Delhi Railway Station 9667422720 Top Quality Escorts ServiceCall Girls In New Delhi Railway Station 9667422720 Top Quality Escorts Service
Call Girls In New Delhi Railway Station 9667422720 Top Quality Escorts ServiceLipikasharma29
 
8800357707, Munirka Metro Good Looking For Call Girls And Escort Service Delhi
8800357707, Munirka Metro Good Looking For Call Girls And Escort Service Delhi8800357707, Munirka Metro Good Looking For Call Girls And Escort Service Delhi
8800357707, Munirka Metro Good Looking For Call Girls And Escort Service Delhimonikaservice1
 
Call Girls In Lajpat Nagar Delhi➥9911191017 High Class Escorts In 24/7 Delhi NCR
Call Girls In Lajpat Nagar Delhi➥9911191017 High Class Escorts In 24/7 Delhi NCRCall Girls In Lajpat Nagar Delhi➥9911191017 High Class Escorts In 24/7 Delhi NCR
Call Girls In Lajpat Nagar Delhi➥9911191017 High Class Escorts In 24/7 Delhi NCRsafdarjungdelhi1
 
Call Us ☎97110√14705🔝 Call Girls In Mandi House (Delhi NCR)
Call Us ☎97110√14705🔝 Call Girls In Mandi House (Delhi NCR)Call Us ☎97110√14705🔝 Call Girls In Mandi House (Delhi NCR)
Call Us ☎97110√14705🔝 Call Girls In Mandi House (Delhi NCR)thapagita
 
9643097474 Full Enjoy @24/7 Call Girls In Munirka Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Munirka Delhi Ncr9643097474 Full Enjoy @24/7 Call Girls In Munirka Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Munirka Delhi Ncrthapariya601
 
9643097474 Full Enjoy @24/7 Call Girls In Laxmi Nagar Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Laxmi Nagar Delhi Ncr9643097474 Full Enjoy @24/7 Call Girls In Laxmi Nagar Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Laxmi Nagar Delhi Ncrthapariya601
 
Call Us ≽ 9643900018 ≼ Call Girls In Sarojini Nagar (Delhi)
Call Us ≽ 9643900018 ≼ Call Girls In Sarojini Nagar (Delhi)Call Us ≽ 9643900018 ≼ Call Girls In Sarojini Nagar (Delhi)
Call Us ≽ 9643900018 ≼ Call Girls In Sarojini Nagar (Delhi)ayushiverma1100
 
Call Girls In Sector 94 Noida 9711911712 Escorts ServiCe Noida
Call Girls In Sector 94 Noida 9711911712 Escorts ServiCe NoidaCall Girls In Sector 94 Noida 9711911712 Escorts ServiCe Noida
Call Girls In Sector 94 Noida 9711911712 Escorts ServiCe NoidaDelhi Escorts Service
 
Tibetan Call Girls In Majnu Ka Tilla Delhi 9643097474
Tibetan Call Girls In Majnu Ka Tilla Delhi 9643097474Tibetan Call Girls In Majnu Ka Tilla Delhi 9643097474
Tibetan Call Girls In Majnu Ka Tilla Delhi 9643097474thapariya601
 
Call Girls In Islamabad ***03255523555*** Red Hot Call Girls In Islamabad Esc...
Call Girls In Islamabad ***03255523555*** Red Hot Call Girls In Islamabad Esc...Call Girls In Islamabad ***03255523555*** Red Hot Call Girls In Islamabad Esc...
Call Girls In Islamabad ***03255523555*** Red Hot Call Girls In Islamabad Esc...Ayesha Khan
 
Call Girls In {Aerocity Delhi} 98733@20244 Indian Russian High Profile Girls ...
Call Girls In {Aerocity Delhi} 98733@20244 Indian Russian High Profile Girls ...Call Girls In {Aerocity Delhi} 98733@20244 Indian Russian High Profile Girls ...
Call Girls In {Aerocity Delhi} 98733@20244 Indian Russian High Profile Girls ...aakahthapa70
 
9643097474 Full Enjoy @24/7 Call Girls In Mahipalpur Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Mahipalpur Delhi Ncr9643097474 Full Enjoy @24/7 Call Girls In Mahipalpur Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Mahipalpur Delhi Ncrthapariya601
 
Call Girls In Sector 90, (Gurgaon) Call Us. 9711911712
Call Girls In Sector 90, (Gurgaon) Call Us. 9711911712Call Girls In Sector 90, (Gurgaon) Call Us. 9711911712
Call Girls In Sector 90, (Gurgaon) Call Us. 9711911712Delhi Escorts Service
 
Trusted Call~Girls In Rohini Delhi꧁❤ 9667422720 ❤꧂Escorts
Trusted Call~Girls In Rohini Delhi꧁❤ 9667422720 ❤꧂EscortsTrusted Call~Girls In Rohini Delhi꧁❤ 9667422720 ❤꧂Escorts
Trusted Call~Girls In Rohini Delhi꧁❤ 9667422720 ❤꧂EscortsLipikasharma29
 
(9818099198) Noida Escorts Service Sector 60 (NOIDA CALL GIRLS)
(9818099198) Noida Escorts Service Sector 60 (NOIDA CALL GIRLS)(9818099198) Noida Escorts Service Sector 60 (NOIDA CALL GIRLS)
(9818099198) Noida Escorts Service Sector 60 (NOIDA CALL GIRLS)riyaescorts54
 
Call Girls In saket 9711800081 Low Rate Short 1500 Night ...
Call Girls In saket 9711800081 Low Rate Short 1500 Night ...Call Girls In saket 9711800081 Low Rate Short 1500 Night ...
Call Girls In saket 9711800081 Low Rate Short 1500 Night ...gitathapa4
 
Call Girls In {Aerocity Delhi} 9667938988 Cheap Price Your Budget & Cash Payment
Call Girls In {Aerocity Delhi} 9667938988 Cheap Price Your Budget & Cash PaymentCall Girls In {Aerocity Delhi} 9667938988 Cheap Price Your Budget & Cash Payment
Call Girls In {Aerocity Delhi} 9667938988 Cheap Price Your Budget & Cash Paymentaakahthapa70
 
9643097474 Full Enjoy @24/7 Call Girls in Hauz Khas Delhi NCR
9643097474 Full Enjoy @24/7 Call Girls in Hauz Khas Delhi NCR9643097474 Full Enjoy @24/7 Call Girls in Hauz Khas Delhi NCR
9643097474 Full Enjoy @24/7 Call Girls in Hauz Khas Delhi NCRthapariya601
 

Kürzlich hochgeladen (20)

Call Girls In New Delhi Railway Station 9667422720 Top Quality Escorts Service
Call Girls In New Delhi Railway Station 9667422720 Top Quality Escorts ServiceCall Girls In New Delhi Railway Station 9667422720 Top Quality Escorts Service
Call Girls In New Delhi Railway Station 9667422720 Top Quality Escorts Service
 
8800357707, Munirka Metro Good Looking For Call Girls And Escort Service Delhi
8800357707, Munirka Metro Good Looking For Call Girls And Escort Service Delhi8800357707, Munirka Metro Good Looking For Call Girls And Escort Service Delhi
8800357707, Munirka Metro Good Looking For Call Girls And Escort Service Delhi
 
Call Girls In Lajpat Nagar Delhi➥9911191017 High Class Escorts In 24/7 Delhi NCR
Call Girls In Lajpat Nagar Delhi➥9911191017 High Class Escorts In 24/7 Delhi NCRCall Girls In Lajpat Nagar Delhi➥9911191017 High Class Escorts In 24/7 Delhi NCR
Call Girls In Lajpat Nagar Delhi➥9911191017 High Class Escorts In 24/7 Delhi NCR
 
Call Us ☎97110√14705🔝 Call Girls In Mandi House (Delhi NCR)
Call Us ☎97110√14705🔝 Call Girls In Mandi House (Delhi NCR)Call Us ☎97110√14705🔝 Call Girls In Mandi House (Delhi NCR)
Call Us ☎97110√14705🔝 Call Girls In Mandi House (Delhi NCR)
 
9643097474 Full Enjoy @24/7 Call Girls In Munirka Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Munirka Delhi Ncr9643097474 Full Enjoy @24/7 Call Girls In Munirka Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Munirka Delhi Ncr
 
9643097474 Full Enjoy @24/7 Call Girls In Laxmi Nagar Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Laxmi Nagar Delhi Ncr9643097474 Full Enjoy @24/7 Call Girls In Laxmi Nagar Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Laxmi Nagar Delhi Ncr
 
Call Us ≽ 9643900018 ≼ Call Girls In Sarojini Nagar (Delhi)
Call Us ≽ 9643900018 ≼ Call Girls In Sarojini Nagar (Delhi)Call Us ≽ 9643900018 ≼ Call Girls In Sarojini Nagar (Delhi)
Call Us ≽ 9643900018 ≼ Call Girls In Sarojini Nagar (Delhi)
 
Call Girls In Sector 94 Noida 9711911712 Escorts ServiCe Noida
Call Girls In Sector 94 Noida 9711911712 Escorts ServiCe NoidaCall Girls In Sector 94 Noida 9711911712 Escorts ServiCe Noida
Call Girls In Sector 94 Noida 9711911712 Escorts ServiCe Noida
 
Tibetan Call Girls In Majnu Ka Tilla Delhi 9643097474
Tibetan Call Girls In Majnu Ka Tilla Delhi 9643097474Tibetan Call Girls In Majnu Ka Tilla Delhi 9643097474
Tibetan Call Girls In Majnu Ka Tilla Delhi 9643097474
 
Call Girls In Islamabad ***03255523555*** Red Hot Call Girls In Islamabad Esc...
Call Girls In Islamabad ***03255523555*** Red Hot Call Girls In Islamabad Esc...Call Girls In Islamabad ***03255523555*** Red Hot Call Girls In Islamabad Esc...
Call Girls In Islamabad ***03255523555*** Red Hot Call Girls In Islamabad Esc...
 
Call Girls In {Aerocity Delhi} 98733@20244 Indian Russian High Profile Girls ...
Call Girls In {Aerocity Delhi} 98733@20244 Indian Russian High Profile Girls ...Call Girls In {Aerocity Delhi} 98733@20244 Indian Russian High Profile Girls ...
Call Girls In {Aerocity Delhi} 98733@20244 Indian Russian High Profile Girls ...
 
9643097474 Full Enjoy @24/7 Call Girls In Mahipalpur Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Mahipalpur Delhi Ncr9643097474 Full Enjoy @24/7 Call Girls In Mahipalpur Delhi Ncr
9643097474 Full Enjoy @24/7 Call Girls In Mahipalpur Delhi Ncr
 
Call Girls In Sector 90, (Gurgaon) Call Us. 9711911712
Call Girls In Sector 90, (Gurgaon) Call Us. 9711911712Call Girls In Sector 90, (Gurgaon) Call Us. 9711911712
Call Girls In Sector 90, (Gurgaon) Call Us. 9711911712
 
Trusted Call~Girls In Rohini Delhi꧁❤ 9667422720 ❤꧂Escorts
Trusted Call~Girls In Rohini Delhi꧁❤ 9667422720 ❤꧂EscortsTrusted Call~Girls In Rohini Delhi꧁❤ 9667422720 ❤꧂Escorts
Trusted Call~Girls In Rohini Delhi꧁❤ 9667422720 ❤꧂Escorts
 
9953056974 Low Rate Call Girls Delhi NCR
9953056974 Low Rate Call Girls Delhi NCR9953056974 Low Rate Call Girls Delhi NCR
9953056974 Low Rate Call Girls Delhi NCR
 
(9818099198) Noida Escorts Service Sector 60 (NOIDA CALL GIRLS)
(9818099198) Noida Escorts Service Sector 60 (NOIDA CALL GIRLS)(9818099198) Noida Escorts Service Sector 60 (NOIDA CALL GIRLS)
(9818099198) Noida Escorts Service Sector 60 (NOIDA CALL GIRLS)
 
9953056974 Low Rate Call Girls In Badarpur Delhi NCR
9953056974 Low Rate Call Girls In  Badarpur Delhi NCR9953056974 Low Rate Call Girls In  Badarpur Delhi NCR
9953056974 Low Rate Call Girls In Badarpur Delhi NCR
 
Call Girls In saket 9711800081 Low Rate Short 1500 Night ...
Call Girls In saket 9711800081 Low Rate Short 1500 Night ...Call Girls In saket 9711800081 Low Rate Short 1500 Night ...
Call Girls In saket 9711800081 Low Rate Short 1500 Night ...
 
Call Girls In {Aerocity Delhi} 9667938988 Cheap Price Your Budget & Cash Payment
Call Girls In {Aerocity Delhi} 9667938988 Cheap Price Your Budget & Cash PaymentCall Girls In {Aerocity Delhi} 9667938988 Cheap Price Your Budget & Cash Payment
Call Girls In {Aerocity Delhi} 9667938988 Cheap Price Your Budget & Cash Payment
 
9643097474 Full Enjoy @24/7 Call Girls in Hauz Khas Delhi NCR
9643097474 Full Enjoy @24/7 Call Girls in Hauz Khas Delhi NCR9643097474 Full Enjoy @24/7 Call Girls in Hauz Khas Delhi NCR
9643097474 Full Enjoy @24/7 Call Girls in Hauz Khas Delhi NCR
 

Top java script frameworks ppt

  • 3. AngularJS: AngularJS is an open-source JavaScript framework, maintained by Google, that assists with running single-page applications.It has some compelling features for not only developers, but designers as well! Getting Into AngularJS 1.All of your AngularJS application files will live in the app/js directory. 2.app.js declares the application with all its dependencies 3.config.js defines the routes, initializes the angularFireAuth module, and declares your Firebase URL as a constant 4.The controllers/ directory contains all your application controllers, separated into their own files. You will continue this separate file convention as the application grows. 5.The services/ directory contains all your application services, following the same file convention as controllers. 6.The directives/ and filters/ directories are empty, but they will contain all your custom Angular directives and filters.
  • 4. Overview: The Angular.js web site essentially carries out these tasks: 1.When on the root page, the Angular.js will listen to messages sent via the WPF publisher over a web socket, which then gets broadcast internally using the Reactive Extensions for JavaScript to anyone interested, which in this article is essentially just the root page. 2.The user may also choose to navigate to a favourites page that will display some thumbnail images of their HTML 5 local storage persisted favourites. These thumbnails may be clicked on to show a pretty standard ColorBox (Lightbox etc etc type thing) jQuery plugin. 3.The user may also choose to a view static about page, which I simply added to make enough routes to make things more worthwhile when demonstating the routing within Angular.js
  • 6. Advantages of AngularJS: • The declarative process is easier to understand. • You can package code as reusable modules. • The modules can be loaded in any order (or even in parallel) because modules delay execution. • AngularJS is a great choice if your are building a CRUD (create/read/update/delete) client side app • Unit tests only have to load relevant modules, which keeps them fast. • End-to-end tests can use modules to override configuration.
  • 7. Applications of AngularJS: 1.Mobile apps - You can create Mobile Web Apps with AngularJS and Phonegap; there’s a project that binds the awesome mobile framework LungoJS with AngularJS. It’s called Lungo-Angular-Bridge or just LAB. 2.CRUD Web Apps - Probably this is the most common use of Angular JS. It includes nice examples for creating a simple CRUD application with Directives, Resources and Services. 3.Chrome Extensions - The easiest way to create a Chrome Extension (either packaged or not) is through Yeoman, its Chrome Extension Generator. 4.Testable JS Apps - AngularJS is fully powered with Test Suites.
  • 8. Node.JS: Node.js is a software platform for scalable server-side and networking applications. Overview: The functioning is described in the schema below. A JavaScript script creates an instance of server and open a port through which a browser or other user agent can communicate with the script.
  • 9. Examples of Where Node.js Should Be Used: The following are some examples of where Node.js should be used : • CHAT The chat application is really the sweet-spot example for Node.js: it’s a lightweight, high traffic, data-intensive (but low processing/computation) application that runs across distributed devices. • PROXY Node.js is easily employed as a server-side proxy where it can handle a large amount of simultaneous connections in a non- blocking manner. It’s especially useful for proxying different services with different response times, or collecting data from multiple source points. • DATA STREAMING It is possible to process files while they’re still being uploaded, as the data comes in through a stream and we can process it in an online fashion. This could be done for real-time audio or video encoding, and proxying between different data sources.
  • 10. Real Time Applications: Some of the real time applications of Node.js are: • It can be used as Web socket server : A typical example of this is a chat server. • Fast file upload client: when there are big file to be uploaded, to make sure that they don’t block so that you can upload more than one file at a time.
  • 11. Advantages of Node.js:  Node.js is a lightweight platform.  Node.js combined with a browser, a document DB (such as MongoDB or CouchDB) and JSON offers a unified JavaScript development stack.  Node.js allows the reuse of the same model and service interface between client-side and server-side.
  • 12. Disadvantages of Node.js:  Npm shrink wrap and package.json were introduced a while back to set up standards, but the issue of standards is still a work in process and some issues still exist.  The whole callback, event-driven, functional programming aspects of Node.js can add a learning curve burden to server- side programmers of other object-oriented languages.  Asynchronous and event-driven code inherently adds more complexity to the code versus a synchronous code.  JavaScript has more than its share of “bad parts” that might throw off engineers and newcomers.
  • 13. Agility.js:  Agility.js is an MVC library for Javascript that lets you write maintainable and reusable browser code without the verbose or infrastructural overhead found in other MVC libraries.  Architecture of Agility.js: Agility’s architecture follows one of the simplest MVC patterns: users define Controller functions, which make direct calls to, and handle events from Models and Views. The diagram below illustrates this.
  • 15. • Agility objects are lightweight in memory (through pervasive use of prototypes), this comes at little performance cost. • Every Agility object can serve as a container of other Agility objects. Agility objects:
  • 16. Features of Agility.js:  Painless two-way model-view bindings;  Implicit controller-event bindings;  Controller auto-proxying for quick and consistent access to owner object;  Format and style in-object for “copy-and-paste” reusability;  Small (<10K) single-library include;  Compact and efficient syntax, inspired by jQuery;
  • 17. Real time applications: 1. cheaphotels.co.uk – Cheap Hotels is an online search engine and deal finder for hotels across the globe. 2. OpDots.com – OpDots is the “see everything” dashboard for your enterprise data. 3. The Wall – The Wall is a minimal Twitter clone, where everyone can post anonymously to a virtual “wall”. It illustrates most features offered by Agility, including server- side persistence
  • 18. Backbone.js:  Backbone came out in June 2010, and its community is nearly as large as Angular’s.  Backbone.js is a JavaScript client-side (front-end) framework.  It helps to organize your code and makes it easier for you to develop single-page web applications. Applications:  Many popular applications use the Backbone framework, including Twitter, Foursquare, and LinkedIn Mobile.  A number of music apps were built with Backbone, including Soundcloud, Pitchfork, and Pandora.
  • 19. Advantages:  Backbone’s diminutive size is typically its biggest selling point, since it only depends on one JavaScript library instead of several.  Backbone is extremely lightweight, which means it’s good for building fast and responsive applications. How to start with Backbone.js : Backbone.js has hard dependency on underscore.js and a soft dependency on jQuery. It’s made up of the following modules: Views Events Models Collections Routers
  • 20. view,model,router: What is a view?  Backbone views are used to reflect what your applications’ data models look like.  They are also used to listen to events and react accordingly. What is a model?  Models are the heart of any JavaScript application.  It contains the interactive data as well as a large part of the logic surrounding it: conversions, validations, computed properties, and access control. What is a router?  Routers are used for routing your applications URL’s when using hash tags(#).  Defined routers should always contain at least one route and a function to map the particular route to.
  • 21. collection, What is a collection? Backbone collections are simply an ordered set of models. It can be used in situations such as : Model: Student, Collection: ClassStudents Model: Todo Item, Collection: Todo List Model: Animal, Collection: Zoo Documentation: Here is the documentation link:http://backbonejs.org
  • 22. Thank You Presented by Omkarsoft www.omkarsoft.com