SlideShare a Scribd company logo
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

More Related Content

PPTX
Angular
Mouad EL Fakir
 
PPTX
Automation - web testing with selenium
Tzirla Rozental
 
PPTX
Introducing Swagger
Tony Tam
 
PPTX
React js
Oswald Campesato
 
PPTX
Javascript frameworks
RajkumarJangid7
 
PPTX
Selenium Tutorial For Beginners | Selenium Automation Testing Tutorial | Sele...
Simplilearn
 
PPTX
Setting up Page Object Model in Automation Framework
valuebound
 
PPTX
Introduction to Selenium Web Driver
Return on Intelligence
 
Automation - web testing with selenium
Tzirla Rozental
 
Introducing Swagger
Tony Tam
 
Javascript frameworks
RajkumarJangid7
 
Selenium Tutorial For Beginners | Selenium Automation Testing Tutorial | Sele...
Simplilearn
 
Setting up Page Object Model in Automation Framework
valuebound
 
Introduction to Selenium Web Driver
Return on Intelligence
 

What's hot (20)

PPT
JMeter
Md Samsul Kabir
 
PPTX
Angular interview questions
Goa App
 
PDF
Angular - Chapter 7 - HTTP Services
WebStackAcademy
 
PDF
How to implement internationalization (i18n) in angular application(multiple ...
Katy Slemon
 
PPTX
Api testing
Keshav Kashyap
 
ODP
BDD with Cucumber
Knoldus Inc.
 
PPT
Selenium ppt
Pavan Kumar
 
PPTX
Introduction to Spring Framework
Serhat Can
 
PPTX
Api Testing
Vishwanath KC
 
PPTX
BDD testing with cucumber
Daniel Kummer
 
PPTX
Selenium-Locators
Mithilesh Singh
 
PPT
Selenium Automation Framework
Mindfire Solutions
 
PDF
JavaScript Tutorial For Beginners | JavaScript Training | JavaScript Programm...
Edureka!
 
PPT
Introduction To Dotnet
SAMIR BHOGAYTA
 
PPT
Basic Guide to Manual Testing
Hiral Gosani
 
PPTX
Angular 2.0 forms
Eyal Vardi
 
PPTX
Angular 14.pptx
MohaNedGhawar
 
PPTX
ReactJS
Ram Murat Sharma
 
PPT
ASP.NET MVC Presentation
ivpol
 
PPTX
BDD WITH CUCUMBER AND JAVA
Srinivas Katakam
 
Angular interview questions
Goa App
 
Angular - Chapter 7 - HTTP Services
WebStackAcademy
 
How to implement internationalization (i18n) in angular application(multiple ...
Katy Slemon
 
Api testing
Keshav Kashyap
 
BDD with Cucumber
Knoldus Inc.
 
Selenium ppt
Pavan Kumar
 
Introduction to Spring Framework
Serhat Can
 
Api Testing
Vishwanath KC
 
BDD testing with cucumber
Daniel Kummer
 
Selenium-Locators
Mithilesh Singh
 
Selenium Automation Framework
Mindfire Solutions
 
JavaScript Tutorial For Beginners | JavaScript Training | JavaScript Programm...
Edureka!
 
Introduction To Dotnet
SAMIR BHOGAYTA
 
Basic Guide to Manual Testing
Hiral Gosani
 
Angular 2.0 forms
Eyal Vardi
 
Angular 14.pptx
MohaNedGhawar
 
ASP.NET MVC Presentation
ivpol
 
BDD WITH CUCUMBER AND JAVA
Srinivas Katakam
 
Ad

Viewers also liked (19)

PPTX
Top 5 Javascript Frameworks for Web and Mobile App Development
Algoworks Inc
 
PDF
reveal.js 3.0.0
Hakim El Hattab
 
PPTX
Latest Javascript MVC & Front End Frameworks 2017
AmarInfotech
 
PDF
Front-End Frameworks: a quick overview
Diacode
 
PDF
Mvc, mvp, mvvm...
Yury Kisliak
 
PPTX
Firebase ng2 zurich
Christoffer Noring
 
PPTX
Ajs ppt
Avyaya Tarnaka
 
PPTX
MVVM - Model View ViewModel
Dareen Alhiyari
 
PDF
Picking the Right Node.js Framework for Your Use Case
Jimmy Guerrero
 
PPTX
AngularJS intro
dizabl
 
PPTX
Design Pattern - MVC, MVP and MVVM
Mudasir Qazi
 
PPT
Node js presentation
martincabrera
 
ODP
Node.js security
Maciej Lasyk
 
PPTX
Benefits of developing single page web applications using angular js
Harbinger Systems - HRTech Builder of Choice
 
PPTX
Introduction to Node.js
Vikash Singh
 
PPT
Js ppt
Rakhi Thota
 
PPTX
Introduction to Angularjs
Manish Shekhawat
 
PDF
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...
Matt Raible
 
Top 5 Javascript Frameworks for Web and Mobile App Development
Algoworks Inc
 
reveal.js 3.0.0
Hakim El Hattab
 
Latest Javascript MVC & Front End Frameworks 2017
AmarInfotech
 
Front-End Frameworks: a quick overview
Diacode
 
Mvc, mvp, mvvm...
Yury Kisliak
 
Firebase ng2 zurich
Christoffer Noring
 
MVVM - Model View ViewModel
Dareen Alhiyari
 
Picking the Right Node.js Framework for Your Use Case
Jimmy Guerrero
 
AngularJS intro
dizabl
 
Design Pattern - MVC, MVP and MVVM
Mudasir Qazi
 
Node js presentation
martincabrera
 
Node.js security
Maciej Lasyk
 
Benefits of developing single page web applications using angular js
Harbinger Systems - HRTech Builder of Choice
 
Introduction to Node.js
Vikash Singh
 
Js ppt
Rakhi Thota
 
Introduction to Angularjs
Manish Shekhawat
 
Comparing Hot JavaScript Frameworks: AngularJS, Ember.js and React.js - Sprin...
Matt Raible
 
Ad

Similar to Top java script frameworks ppt (20)

DOCX
Top 10 Javascript Frameworks For Easy Web Development
Technostacks Infotech Pvt. Ltd.
 
PPTX
9 Best JavaScript Frameworks To Choose
Albiorix Technology
 
PDF
What is mean stack?
Rishabh Saxena
 
PDF
Node.js Development Tools
SofiaCarter4
 
PPTX
5 Powerful Backend Frameworks for Web App Development in 2022
75waytechnologies
 
PDF
Top 11 Front-End Web Development Tools To Consider in 2020
Katy Slemon
 
PDF
Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...
JPLoft Solutions
 
PPTX
8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx
75waytechnologies
 
PPTX
Node js installation steps.pptx slide share ppts
HemaSenthil5
 
PPTX
Big Improvement_ New AngularJS Tools Changing How We Develop.pptx
sarah david
 
PPTX
module for backend full stack applications 1.pptx
hemalathas752360
 
PDF
AngularJS - A Powerful Framework For Web Applications
Idexcel Technologies
 
PDF
Big Improvement_ New AngularJS Tools Changing How We Develop.pdf
sarah david
 
PDF
Comparison Between React Vs Angular.pdf
StephieJohn
 
PDF
Important Backend Frameworks To Remember For Businesses In 2023
Netizens Technologies
 
PPTX
Top 10 frameworks of node js
HabileLabs
 
PPTX
Top 5 backend frameworks for web development in.pptx
SilverClouding Consultancy Pvt Ltd
 
PDF
Angular vs React Choosing the Best Framework in 2025
Kryptoninc
 
PPT
Js frameworks
ParagKhalas
 
PDF
Nodejs framework for app development.pdf
Sufalam Technologies
 
Top 10 Javascript Frameworks For Easy Web Development
Technostacks Infotech Pvt. Ltd.
 
9 Best JavaScript Frameworks To Choose
Albiorix Technology
 
What is mean stack?
Rishabh Saxena
 
Node.js Development Tools
SofiaCarter4
 
5 Powerful Backend Frameworks for Web App Development in 2022
75waytechnologies
 
Top 11 Front-End Web Development Tools To Consider in 2020
Katy Slemon
 
Comparing AngularJS and ReactJS_ Finding the Best Framework for your Next Pro...
JPLoft Solutions
 
8 Node.js Frameworks Every Developer Should Know [UPDATED].pptx
75waytechnologies
 
Node js installation steps.pptx slide share ppts
HemaSenthil5
 
Big Improvement_ New AngularJS Tools Changing How We Develop.pptx
sarah david
 
module for backend full stack applications 1.pptx
hemalathas752360
 
AngularJS - A Powerful Framework For Web Applications
Idexcel Technologies
 
Big Improvement_ New AngularJS Tools Changing How We Develop.pdf
sarah david
 
Comparison Between React Vs Angular.pdf
StephieJohn
 
Important Backend Frameworks To Remember For Businesses In 2023
Netizens Technologies
 
Top 10 frameworks of node js
HabileLabs
 
Top 5 backend frameworks for web development in.pptx
SilverClouding Consultancy Pvt Ltd
 
Angular vs React Choosing the Best Framework in 2025
Kryptoninc
 
Js frameworks
ParagKhalas
 
Nodejs framework for app development.pdf
Sufalam Technologies
 

Recently uploaded (20)

PDF
The TV Writer’s Toolkit: Structure, Dialogue, and Storytelling
All Writers Destination
 
PPTX
All‑Inclusive HVAC - Why Contractors Are Shifting Sales Models
HVAC Resource Center
 
PDF
Hidden Gems of London_ Chauffeur-Led Routes Off the Tourist Track.pdf
92 Chauffeurs
 
PDF
The Impact of AI and ML Development on Modern Industries.pdf
drcsystemsmarketing
 
PDF
How Lead Generation Strategies Help NDIS Providers Grow-eZaango care partners
eZaango Care Partners
 
PPTX
Unlock your organization to full potential
rishabhviiib16986
 
PDF
Dinner Conversations The Magic of Stranger Meetups Over a Meal.pdf
StepOut4
 
PPTX
Expert digital marketing agency for online growth
webcooks Digital Academy
 
PPTX
Choosing the Right Fire System for Your Industry.pptx
Endfire Engineering
 
PDF
Hire Flutter App Developers – Latiyal Infotech India
Latiyalinfotech
 
PDF
Top 10 Medical Coding Courses in Noida With Placements
ca99579957
 
PDF
Poolside Haldi Celebration at The Fort Ramgarh PPT
TheFortRamgarh2
 
PPTX
Why Swift Is the Most Preferred Choice of Developers For iOS App Development?
XiotDev Technologies
 
PDF
E- Commerence Website Development & Design.pdf
Zinavo Pvt Ltd
 
PDF
IT Infrastructure Services – Latiyal Infotech Solutions
Latiyalinfotech
 
PPTX
Future of Fulfillment: Inside Amazon’s $500M Oregon Warehouse
Stock and Ship
 
PPTX
Cybersecurity Solutions in Abu Dhabi | Bluechip Gulf
Bluechip Gulf
 
PDF
Fast Mail Transfer Between Any Two IMAP Servers
corepo6446
 
PDF
Mukul Madhav Foundation (MMF) Newsletter – May 2025
businessblogskrishna
 
PDF
Building a Culture of Data Security in Your Organization
VRS Technologies
 
The TV Writer’s Toolkit: Structure, Dialogue, and Storytelling
All Writers Destination
 
All‑Inclusive HVAC - Why Contractors Are Shifting Sales Models
HVAC Resource Center
 
Hidden Gems of London_ Chauffeur-Led Routes Off the Tourist Track.pdf
92 Chauffeurs
 
The Impact of AI and ML Development on Modern Industries.pdf
drcsystemsmarketing
 
How Lead Generation Strategies Help NDIS Providers Grow-eZaango care partners
eZaango Care Partners
 
Unlock your organization to full potential
rishabhviiib16986
 
Dinner Conversations The Magic of Stranger Meetups Over a Meal.pdf
StepOut4
 
Expert digital marketing agency for online growth
webcooks Digital Academy
 
Choosing the Right Fire System for Your Industry.pptx
Endfire Engineering
 
Hire Flutter App Developers – Latiyal Infotech India
Latiyalinfotech
 
Top 10 Medical Coding Courses in Noida With Placements
ca99579957
 
Poolside Haldi Celebration at The Fort Ramgarh PPT
TheFortRamgarh2
 
Why Swift Is the Most Preferred Choice of Developers For iOS App Development?
XiotDev Technologies
 
E- Commerence Website Development & Design.pdf
Zinavo Pvt Ltd
 
IT Infrastructure Services – Latiyal Infotech Solutions
Latiyalinfotech
 
Future of Fulfillment: Inside Amazon’s $500M Oregon Warehouse
Stock and Ship
 
Cybersecurity Solutions in Abu Dhabi | Bluechip Gulf
Bluechip Gulf
 
Fast Mail Transfer Between Any Two IMAP Servers
corepo6446
 
Mukul Madhav Foundation (MMF) Newsletter – May 2025
businessblogskrishna
 
Building a Culture of Data Security in Your Organization
VRS Technologies
 

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