Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 History  





2 Design  





3 Concepts  





4 Ember software / Addons  



4.1  Ember CLI  





4.2  Ember Data  





4.3  Ember Inspector  





4.4  Fastboot  





4.5  Liquid Fire  







5 Release process  



5.1  Release cycle  





5.2  Upgrading and backward compatibility  







6 Future development  





7 Sponsorship  





8 References  





9 Further reading  





10 External links  














Ember.js






Català
Deutsch
Eesti
فارسی
Français


Polski
Português
Русский
Türkçe
Українська

 

Edit links
 









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Cite this page
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 




In other projects  



Wikimedia Commons
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


Ember.js
Original author(s)Yehuda Katz
Developer(s)Ember Core Team
Initial release8 December 2011; 12 years ago (2011-12-08)
Stable release

5.10.0[1] Edit this on Wikidata / 8 July 2024; 8 days ago (8 July 2024)

RepositoryEmber.js Repository
Written inJavaScript
Operating systemCross-platform
TypeJavaScript library
LicenseMIT License[2]
Websiteemberjs.com

Ember.js is an open-source JavaScript web framework that utilizes a component-service pattern. It is designed to allow developers to create scalable single-page web applications by incorporating common idioms, best practices, and patterns from other single-page-app ecosystem patterns into the framework.[3]

Ember is used on many websites including HashiCorp, DigitalOcean, Apple Music, Square, Inc., Intercom, Discourse, Groupon, LinkedIn, Live Nation, Ghost, Nordstrom, and Twitch.[4][5][6] Although primarily considered a framework for the web, it is also possible to build desktop and mobile applications with Ember when utilizing a hybrid app pattern.[7][8][9] The most notable example of an Ember desktop application is Apple Music, a feature of the iTunes desktop application.[10]

The Ember trademark is owned by Tilde Inc.[11]

History[edit]

In December 2011, the SproutCore 2.0 framework was renamed to Ember.js, to reduce confusion between the application framework and the widget library of SproutCore 1.0.[12][13] The framework was created by Yehuda Katz, a member of the jQuery, Ruby on Rails and SproutCore core teams.

Design[edit]

According to the company, Ember was designed around four key ideas:

Web applications
Ember sets out to provide a solution to the client-side application problem.[citation needed]
More productivity
Ember is one component of a set of tools to provide a development stack. Ember CLI provides an application structure and build pipeline with an add-on.[14][15]
Stability
Ember aims to prioritize backward compatibility and allow it to be maintained while still evolving the framework.[16]
Future web standards
Ember was an adopter of standards around JavaScript and the web, including promises, web components and ES6 syntax.[17][18] Yehuda Katz, one of Ember's co-founders, is a member on TC39, which is the committee responsible for future versions of the JavaScript language.[19]

Like Ruby on Rails, Ember follows convention over configuration (CoC), and the don't repeat yourself (DRY) principle.[20] It has been described as a highly opinionated framework built to be very flexible.[21]

Concepts[edit]

According to the company, Ember consists of five key concepts:[22]

Routes
In Ember, the state of an application is represented by a URL. Each URL has a corresponding "route object" that controls what is visible to the user.
Models
Every route has an associated model, containing the data associated with the current state of the application.[23] While one can use window.fetch to load JSON objects from a server and use those objects as models, most applications use a model library such as Ember Data to handle this.
Templates
Templates are used to build the application's HTML and are written with the HTMLBars templating language. (HTMLBars is a variation of Handlebars that builds DOM elements rather than a String.)[24]
Components
A component is a custom HTML tag. Its behavior is implemented using JavaScript, and its appearance is defined using HTMLBars templates. Components "own" their data. They can also be nested and can communicate with their parent components through actions (events). Other component libraries, such as Polymer can also be used with Ember.[25]
Services
Services are just singleton objects to hold long-lived data such as user sessions.[26]
Ember also provides dependency injection, declarative one-way data-flow, tracked properties, and automatically updating templates.[27]

Ember software / Addons[edit]

Ember.js is one component of a complete front-end stack built and supported by the Ember core team.

Ember CLI[edit]

Ember-CLI aims to bring convention over configuration to build tools. A command line utility based on broccoli, running the command ember new <app-name> generates a new Ember app with the default stack.[28] This provides:

Other features include:

Ember Data[edit]

Most Ember applications use Ember Data, a data-persistence library providing many of the facilities of object-relational mapping (ORM).[36] However it is also possible to use Ember without Ember Data.[37]

Ember Data maps client-side models to server-side data. It can then load and save records and their relationships without any configuration via a RESTful JSON API that implements the JSON API specification,[38] provided certain conventions are followed.[39] However it is also configurable and can work with servers through the use of adapters and addons.[40] JSON API has server library implementations for PHP, Node.js, Ruby, Python, Go, .NET and Java.[41] Connecting to a Java-Spring-based server is also documented.[42]

The first stable version of Ember Data (labeled 1.13 to align with Ember itself) was released on June 18 June 2015.[43]

Ember Inspector[edit]

The Ember Inspector is an extension currently available for the Mozilla Firefox and Google Chrome web browsers for debugging Ember applications.[44][45] Features include the ability to see which templates, components, and views are currently rendered, see the properties of any Ember object with a UI that computes bindings and computed properties, and access one's application's objects from the console.[46] If Ember Data is used, one can also see the records loaded for each model.

Fastboot[edit]

Fastboot is an Ember CLI add-on created by the Ember core team that gives Ember developers the ability to run their apps in Node.js. This feature allows end users to see HTML and CSS right away, with JavaScript downloading in the background and taking over once it has fully loaded.[47]

Liquid Fire[edit]

Liquid Fire provides animation support for Ember applications.[48] Features include animated transitions between routes and between models within a single route. It provides a DSL for solidifying spatial route relationships, cleanly separated from view-layer implementation details. An example would be to animate a screen transition so that the new screen appears to slide in from one edge of the browser.[49]

Release process[edit]

See the releases blog for the full list of releases and detailed changelog.

Release cycle[edit]

Ember follows a six-week release cycle, inspired by the rapid release cycle of Google Chrome.[50]

Starting with Ember 2.0, related projects supported by the core team have their releases coordinated, and share a version number with Ember itself.[51]

Upgrading and backward compatibility[edit]

Ember follows the semantic versioning convention.[52] In particular, breaking changes are only introduced at significant version numbers, such as 1.0, 2.0, etc. While new features can be added at point releases (1.1, 1.2...), and features deprecated, no breaking changes to the public APIs are introduced. Tooling was also under development in 2015 to help streamline the upgrade process.[53]

In addition to this process, several steps were taken to mitigate issues around upgrading to the 2.0 release:

The process follows the core Ember principle of Stability without Stagnation and is in marked contrast to the upgrade plans of similar projects such as AngularJS.[54]

Future development[edit]

Project status can be tracked via the core team meeting minutes.[55] However, major changes to Ember go through the Request For Comment process.[56] This gives the Ember community a chance to give feedback on new proposals. Notable RFCs include:

Sponsorship[edit]

Unlike other projects such as AngularJS (Google) and React (Facebook) which have the backing of one main company, Ember.js has a variety of sponsors and backers. These include users of the framework such as Yahoo!, LinkedIn and Bustle.[61][62]

References[edit]

  1. ^ "Release 5.10.0". 8 July 24 (Julian). Retrieved 12 July 2024. {{cite web}}: Check date values in: |date= (help)
  • ^ "ember.js/LICENSE". GitHub. Retrieved 27 April 2017.
  • ^ Aghassipour, Alexander; Chacko, Shajith (30 Nov 2012). "Enterprise Apps Are Moving To Single-Page Design". TechCrunch.
  • ^ "Building With Ember.js at Groupon". TalentBuddy. Retrieved 15 Oct 2015.
  • ^ "Discourse-Built with Ember.js". GitHub. Retrieved 15 Jul 2015.
  • ^ "Intercom".
  • ^ "Ember-Write Once, Run Everywhere". GitHub. 5 Jul 2015.
  • ^ "Build better desktop apps with Ember". SpeakerDeck. 5 Jul 2015.
  • ^ "Wicked Good Ember 2015 talk - Build better desktop apps with Ember, video". 5 Jul 2015.
  • ^ "Built with ember - Apple Music". BuiltWithEmber. Retrieved 21 Jul 2016.
  • ^ "Ember.js: Legal". emberjs.com. Retrieved 2019-02-14.
  • ^ "SproutCore 2.0 becomes Ember.js". The H. 13 Dec 2011.
  • ^ "Amber.js (formerly SproutCore 2.0) is now Ember.js". yehudakatz.com. 12 Dec 2011.
  • ^ "Ember CLI". Retrieved 15 Dec 2018.
  • ^ "Ember Addons". Retrieved 15 Dec 2018.
  • ^ Asay, Matt (4 November 2014). "Innovating Fast And Slow: EmberJS Insists, "We Don't Need To Break The Web"". ReadWrite. Retrieved 18 Jun 2015.
  • ^ "JavaScript Promises". Mozilla. Retrieved 18 Jun 2015.
  • ^ "Web Components". WebComponents. Retrieved 18 Jun 2015.
  • ^ "TC39: Members". TC39Wiki. Retrieved 18 Jun 2015.
  • ^ "What we've learned from Ember.js after 2 months developing our new product". Solid. 16 December 2014. Retrieved 3 November 2015.
  • ^ "Top Reasons Why Industry Experts Use Ember.js And How You Can Adopt It Yourself". TalentBuddy. Retrieved 14 October 2015.
  • ^ Frank Treacy. "5 Essential Ember 2.0 Concepts You Must Understand". EmberIgniter. Archived from the original on 27 July 2016. Retrieved 31 August 2015.
  • ^ "Ember.js - Models: Introduction". Emberjs. Retrieved 21 Jan 2014.
  • ^ Jackson, Robert. "HTMLBars". GitHub. Retrieved 18 February 2015.
  • ^ "How To Add Polymer To Your Ember Project". ProgramWithErik. 27 March 2015. Retrieved 11 Aug 2015.
  • ^ "Ember Services Tutorial". ProgramWithErik. 26 July 2015. Retrieved 27 July 2015.
  • ^ Bango, Rey (14 Mar 2013). "Getting Into Ember.js". Nettuts+.
  • ^ "Ember CLI". Retrieved 15 Dec 2018.
  • ^ "Ember testing". Retrieved 15 Dec 2018.
  • ^ "Ember CLI-managing dependencies". Retrieved 15 Dec 2018.
  • ^ "Ember CLI asset compilation". Retrieved 15 Dec 2018.
  • ^ "Ember CLI Blueprints". Retrieved 15 Dec 2018.
  • ^ "Ember CLI Writing Addons". Retrieved 15 Dec 2018.
  • ^ "Ember Addons directory". emberobserver.com. Retrieved 15 Dec 2018.
  • ^ "Ember CLI Overview". Retrieved 15 Dec 2018.
  • ^ "Ember Data README". GitHub. Retrieved 4 Dec 2013.
  • ^ "Ember without Ember Data". Evil Trout. 23 March 2013. Retrieved 2 Jan 2014.
  • ^ "JSON API specification". Retrieved 16 Jun 2015.
  • ^ "Ember.js Models". Emberjs. Retrieved 26 Jun 2015.
  • ^ "Ember Observer-Data". EmberObserver. Retrieved 16 Jun 2015.
  • ^ "JSON API implementations". JSON API. Retrieved 26 Jun 2015.
  • ^ "Integrating Ember.js with the Spring Framework". SpringEmber. 20 August 2014. Retrieved 26 Jun 2015.
  • ^ "Ember Data 1.13 release". 18 June 2015. Retrieved 18 Jun 2015.
  • ^ "Firefox Addons - Ember Inspector". Mozilla. Retrieved 5 August 2015.
  • ^ "Chrome Web Store - Ember Inspector". Chrome Web Store. Retrieved 18 Feb 2014.
  • ^ "Ember Inspector". Ember.js. Retrieved 28 Jun 2015.
  • ^ "Inside Fastboot. Faking the DOM in node". Emberjs. 8 January 2015. Retrieved 19 June 2015.
  • ^ "Liquid Fire: Animations & Transitions for Ember Apps". GitHub. Retrieved 19 June 2015.
  • ^ "Animations in Ember.js with liquid-fire". airpair.com. Archived from the original on 8 November 2020. Retrieved 10 July 2015.
  • ^ "New Ember release process". 6 September 2013. Retrieved 19 June 2015.
  • ^ "Ember Project at 2.0". 16 June 2015. Retrieved 19 June 2015.
  • ^ "Ember API Freeze". 18 January 2013. Retrieved 19 June 2015.
  • ^ "Ember Watson Addon". Retrieved 19 June 2015.
  • ^ "Angular 2.0 announcement". 29 October 2014. Retrieved 19 June 2015.
  • ^ "Ember core team meeting minutes". Emberjs. Retrieved 5 Jul 2015.
  • ^ "Ember RFC process". Emberjs. Retrieved 18 Jun 2015.
  • ^ "Ember Engines". EmberAddons.com. Retrieved 19 Jan 2016.
  • ^ "Engines". Emberjs. Retrieved 3 Feb 2015.
  • ^ "Refining the Release Process RFC". Emberjs. Retrieved 18 Jun 2015.[permanent dead link]
  • ^ "Outlet Focusing RFC". Emberjs. Archived from the original on 24 September 2016. Retrieved 18 Jun 2015.
  • ^ "Ember sponsors". Emberjs. Retrieved 18 Jun 2015.
  • ^ "Interview with Mike North, Principal Software Engineer, Yahoo". Emberweekend. Retrieved 10 Aug 2015.
  • Further reading[edit]

    External links[edit]


    Retrieved from "https://en.wikipedia.org/w/index.php?title=Ember.js&oldid=1233502699"

    Categories: 
    JavaScript libraries
    Ajax (programming)
    Software using the MIT license
    Web frameworks
    JavaScript articles needing attention
    Hidden categories: 
    CS1 errors: dates
    All articles with dead external links
    Articles with dead external links from August 2019
    Articles with permanently dead external links
    Articles with short description
    Short description matches Wikidata
    Articles with a promotional tone from February 2016
    All articles with a promotional tone
    Articles with wikipuffery from September 2020
    Articles with a promotional tone from September 2020
    All articles with unsourced statements
    Articles with unsourced statements from January 2024
    Articles with J9U identifiers
    Articles with LCCN identifiers
     



    This page was last edited on 9 July 2024, at 12:08 (UTC).

    Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



    Privacy policy

    About Wikipedia

    Disclaimers

    Contact Wikipedia

    Code of Conduct

    Developers

    Statistics

    Cookie statement

    Mobile view



    Wikimedia Foundation
    Powered by MediaWiki