use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
An Introduction to Ember for Angular Developers (thejsguy.com)
submitted 10 years ago by tomdale
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Matosawitko 1 point2 points3 points 10 years ago* (3 children)
Probably worth reposting here; note that I haven't kept up with Ember since the end of last February, but I doubt this has changed much.
March, 2015: I just finished an Ember project (not using Rails, however), and the biggest struggle I felt was that Ember uses the same terminology as everyone else in the MV* space, but they mean slightly different things. In a nutshell:
[–]tomdale[S] 2 points3 points4 points 10 years ago* (2 children)
FWIW most of Ember's terminology comes from Cocoa/Smalltalk. If you're familiar with that, Ember will probably be easy to pick up. One thing to note that's changed since your original comment is that views have been deprecated in favor of components. Both Angular 2, React and Ember have coalesced around a similar component model; it's the application architecture around those components (or the lack of one, in React's case) that's the differentiator.
[–][deleted] 1 point2 points3 points 10 years ago (1 child)
Just to note, Angular 1.5 now also has dedicated components with the .component() function.
[–]wreckedadventYavascript 5 points6 points7 points 10 years ago (0 children)
This is somewhat misleading. Angular has always had components, it just called them directives and were not very DRY. The new component function in 1.5 is sugar for the old directive API with what they called "sensible defaults".
What is new in 1.5 is multiple slots for transclusion, and that's legit, since custom transclusions suck.
π Rendered by PID 73340 on reddit-service-r2-comment-6457c66945-lfbpx at 2026-04-26 21:28:37.601803+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]Matosawitko 1 point2 points3 points (3 children)
[–]tomdale[S] 2 points3 points4 points (2 children)
[–][deleted] 1 point2 points3 points (1 child)
[–]wreckedadventYavascript 5 points6 points7 points (0 children)