SlideShare a Scribd company logo
http://jyaasa.com
Presentation on Ember.Js
Copyright 2015. Jyaasa Technologies.
Ms. Prativa Devkota
Mr. Shishir Sapkota
Ember-cli
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
You need no cli
Immediate::reaction=>:what?
Assert: “true”
Ember-cli
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
Hi!
It’s me
Ember!!
http://jyaasa.com
Result is Beautiful
Copyright 2015. Jyaasa Technologies.
http://jyaasa.com
What is Ember?
A JavaScript Framework
Based on Model, View, Controller or MVC Pattern
openSource::ofCourse!
Copyright 2015. Jyaasa Technologies.
“
http://jyaasa.com
Ember.js is an open-source JavaScript application
framework, based on the model-view-controller (MVC)
pattern. It allows developers to create scalable single-
page web applications by incorporating common idioms
and best practices into the framework. - Wikipedia
Copyright 2015. Jyaasa Technologies.
http://jyaasa.com
Why Ember?
Focus on ambitious web applications
Ember sets out to provide a wholesale solution to the
client-side application problem
More productiveout of the box
type less achieve more
Stability without stagnation
backward compatibility
The future is here
Convention over Configuration
Don't Repeat Yourself (DRY)
Copyright 2015. Jyaasa Technologies.
http://jyaasa.com
It all starts with…
Well, with something
If app doesnot have url, it’s not web app
Let us start with url
Copyright 2015. Jyaasa Technologies.
http://jyaasa.com
Hello Router
Router.map(function() {
this.resource('posts', {path: '/'});
this.route('about');
this.resource('contact', function(){
this.resource('phone');
this.resource('email');
});
});
Copyright 2015. Jyaasa Technologies.
http://jyaasa.com
Templates
.handlebars or .hbs
<div class = "row">
<h1>Contacts</h1>
<div class = 'col-sm-6'>
<li>
{{#link-to 'phone'}}Phone {{/link-to}}
</li>
<li>
{{#link-to 'email'}}Email {{/link-to}}
</li>
</div>
<div class = 'col-sm-6'>
{{outlet}}
</div>
</div>
Copyright 2015. Jyaasa Technologies.
Controllers
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
It defines Interactivity
export default Ember.Controller.extend({
displaying: false, // defines a property
actions:{
showPhoto: function() {
this.set('displaying', true)
},
hidePhoto: function(){
this.set('displaying', false)
}
}
});
View
{{#if displaying}}
<p>
<button {{action 'hidePhoto'}} class='btn btn-primary'>
Hide Picture</button>
</p>
<p>
<img src="http://www.nature.com/nature/journal/v489/n7416/images/489372b-f1.2.jpg">
</p>
{{else}}
<button {{action 'showPhoto'}} class= 'btn btn-primary'>
Show Picture</button>
{{/if}}
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
Model
App.Blogger = DS.Model.extend({
name: DS.attr(„string’),
gender: DS.attr(),
address: DS.attr(),
martial_status: DS.attr()
});
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
Cli: „I am Back’
Hey, did you forget that cli?
That suffix does all of the mundane work
It is supposed to be your best friend
It wants you to spend your time being productive
Use it, and never look back!
emberdata
A library that integrates tightly with Ember.js
It makes it easy to retrieve records from a server,
cache them for performance, save updates back to the
server, and create new records on the client
Without andy configuration, Ember Data can load and
save records and their relationships served via a
RESTfulJSON API, provided it follows certain
conventions
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
Review
Simplicity
Productivity
Maintainability
Readability
Creativity
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
Where to go now...
Do not reinvent the wheelEmber.js
Strong convention results:strong_convinction=>”DIY”
DIY.Resolves :Do_IT_YOURSELF
I see no limit to Sky
Tweet us @jyaasa
or email us web@jyaasa.com
Questions?
http://jyaasa.comCopyright 2015. Jyaasa Technologies.
Thank You!!

More Related Content

PDF
Ember presentation
PPTX
Ember - introduction
PPTX
PDF
RxJS Operators - Real World Use Cases (FULL VERSION)
PPT
Vue.js Getting Started
PPTX
Laravel overview
PDF
PPTX
What is component in reactjs
Ember presentation
Ember - introduction
RxJS Operators - Real World Use Cases (FULL VERSION)
Vue.js Getting Started
Laravel overview
What is component in reactjs

What's hot (20)

PDF
Spring Boot
PDF
Webdriver io presentation
PDF
Use Node.js to create a REST API
ODP
Routing & Navigating Pages in Angular 2
PDF
Introduction to react
PPTX
Core web Vitals: Web Performance and Usability
PPTX
reactJS
PPTX
What’s New in Angular 14?
PDF
Micro Frontends Architecture
PDF
Introduction to ASP.NET Core
PDF
Angular and The Case for RxJS
PDF
FEVR - Micro Frontend
PPTX
Intro to React
PPTX
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
ODP
Introduction to ReactJS
PDF
Angular data binding
PPTX
React JS - A quick introduction tutorial
PPTX
Express js
PPT
Java servlets
PDF
Express node js
Spring Boot
Webdriver io presentation
Use Node.js to create a REST API
Routing & Navigating Pages in Angular 2
Introduction to react
Core web Vitals: Web Performance and Usability
reactJS
What’s New in Angular 14?
Micro Frontends Architecture
Introduction to ASP.NET Core
Angular and The Case for RxJS
FEVR - Micro Frontend
Intro to React
Laravel development (Laravel History, Environment Setup & Laravel Installatio...
Introduction to ReactJS
Angular data binding
React JS - A quick introduction tutorial
Express js
Java servlets
Express node js
Ad

Similar to Presentation on Ember.js (20)

PDF
Riding the Edge with Ember.js
PPT
Ember.js: Jump Start
PPTX
Emberjs and ASP.NET
ODP
Introduction to ember js
PPTX
Introduction to Ember.js
PDF
A Beginner's Guide to Ember
PDF
Create an application with ember
PDF
Workshop 16: EmberJS Parte I
PPTX
Introduction to Ember.js
PDF
Stackup New Languages Talk: Ember is for Everybody
PPTX
Intro to EmberJS
PDF
Ember.js Meetup Brussels 31/10/2013
PDF
Delivering with ember.js
PDF
Intro to ember.js
PDF
Parse Apps with Ember.js
PDF
Ember,js: Hipster Hamster Framework
PDF
Pilot Tech Talk #9 — Ember.js: Productivity without the fatigue by Jacek Gala...
PDF
Building Web Apps With Emberjs Jesse Cravens Thomas Q Brady
PPTX
Node.js meetup 17.05.2017 ember.js - escape the javascript fatigue
PDF
Introduction to Ember.js and how we used it at FlowPro.io
Riding the Edge with Ember.js
Ember.js: Jump Start
Emberjs and ASP.NET
Introduction to ember js
Introduction to Ember.js
A Beginner's Guide to Ember
Create an application with ember
Workshop 16: EmberJS Parte I
Introduction to Ember.js
Stackup New Languages Talk: Ember is for Everybody
Intro to EmberJS
Ember.js Meetup Brussels 31/10/2013
Delivering with ember.js
Intro to ember.js
Parse Apps with Ember.js
Ember,js: Hipster Hamster Framework
Pilot Tech Talk #9 — Ember.js: Productivity without the fatigue by Jacek Gala...
Building Web Apps With Emberjs Jesse Cravens Thomas Q Brady
Node.js meetup 17.05.2017 ember.js - escape the javascript fatigue
Introduction to Ember.js and how we used it at FlowPro.io
Ad

More from Jyaasa Technologies (20)

PPTX
Incident management with jira
PPTX
Extreme programming practices ( xp )
PPTX
The myth of 'real javascript developer'
PPTX
Microservices
PPTX
Facade pattern in rails
PPTX
Scrum ceromonies
PPTX
An introduction to bitcoin
PPTX
Tor network
PPTX
Collective ownership in agile teams
PPTX
Push notification
PPTX
The Design Thinking Process
PPTX
PPTX
Design sprint
PPTX
Data Flow Diagram
PPTX
OKRs and Actions Overview
PPTX
Active record in rails 5
PPTX
Design Patern::Adaptor pattern
PDF
Association in rails
PDF
Web design layout pattern
Incident management with jira
Extreme programming practices ( xp )
The myth of 'real javascript developer'
Microservices
Facade pattern in rails
Scrum ceromonies
An introduction to bitcoin
Tor network
Collective ownership in agile teams
Push notification
The Design Thinking Process
Design sprint
Data Flow Diagram
OKRs and Actions Overview
Active record in rails 5
Design Patern::Adaptor pattern
Association in rails
Web design layout pattern

Recently uploaded (20)

PPTX
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
PDF
Website Design Services for Small Businesses.pdf
PDF
Nekopoi APK 2025 free lastest update
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Autodesk AutoCAD Crack Free Download 2025
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
DOCX
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Complete Guide to Website Development in Malaysia for SMEs
PPTX
Advanced SystemCare Ultimate Crack + Portable (2025)
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
PDF
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
history of c programming in notes for students .pptx
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
Website Design Services for Small Businesses.pdf
Nekopoi APK 2025 free lastest update
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
Odoo Companies in India – Driving Business Transformation.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Autodesk AutoCAD Crack Free Download 2025
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
Wondershare Filmora 15 Crack With Activation Key [2025
Complete Guide to Website Development in Malaysia for SMEs
Advanced SystemCare Ultimate Crack + Portable (2025)
Digital Systems & Binary Numbers (comprehensive )
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
Operating system designcfffgfgggggggvggggggggg
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
Internet Downloader Manager (IDM) Crack 6.42 Build 41
history of c programming in notes for students .pptx

Presentation on Ember.js